From 2ba6f164f2e59ab074bcc7031be9001e4a107585 Mon Sep 17 00:00:00 2001 From: jayceeemperador <31611994+jayceeemperador@users.noreply.github.com> Date: Fri, 6 Sep 2024 23:36:44 +0800 Subject: [PATCH] Cisco C9800 Wireless Controller AP Count Support (#16342) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update CISCO-LWAPP-TC-MIB Uploaded latest version from Cisco Feature Navigator From the original Cisco MIB: Deleted duplicate END in line 868 Change the names “dot11_6ghz” and “dot11_xor_5_6ghz” by removing the underscore (example: “dot11-6ghz” “dot11-xor-5-6ghz”) * Update Iosxe.php Added Wireless Controller module * Update iosxe.yaml Added AP count and Wireless Client Credit to @AllanHahn * Create iosxewlc.yaml Added IOS-XE WLC. Need to add sysObjectID for the future devices beyond WLC9800. System description has IOS-XE in it * Update iosxe.yaml * Update iosxe.yaml WLC 9800 not included, have own YAML file * Create iosxewlc.php * Update Iosxe.php Remove WLC Module * Rename iosxewlc.php to Iosxewlc.php * C9800 WLC detection * Update iosxewlc.yaml * Remove CiscoWLC notes * Remove ISIS * Update Iosxewlc.php * Fix syntax * Remove Cisco WLC notes Need some cleanup since already created new PHP file for Cisco IOS-XE WLC * Update Iosxewlc.php * Update CISCO-LWAPP-AP-MIB Downloaded the latest from Cisco MIBS to support AP count for Cisco WLC C9800 models. * Update Copyright * Change type from network to wireless * Patterned with AirOS Cisco WLC * Create iosxewlc_c9800.snmprec Added test file * styleci compliance * styleci compliance * styleci compliance * Uploaded data from actual device * styleci compliance * styleci compliance - remove space * Merge iosxe and iosxewlc As discussed * Merhe iosxewlc.yaml to iosxe.yaml No over graphs for Number of Clients and AP Count or IOSXE WLCs but still can view via Tabs * remove iosxewlc.yaml Covered by iosxe.yaml * Delete iosxewlc.php Covered by iosxe.php * Rename iosxewlc_c9800.snmprec to iosxe_c9800.snmprec due to removal of iosxewlc template which was merged. * styleci compliance * styleci compliance * Update iosxe_c9800.snmprec * Update iosxe_c9800.snmprec * rerun-tests * Remove pollOS block from Iosxe * Check before polling and add additional IP discovery * lint fix * Added raw data from actual device Convert sensitive data to * Create iosxe_c9800.json --------- Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Co-authored-by: Tony Murray --- LibreNMS/OS/Ciscowlc.php | 40 +- LibreNMS/OS/Iosxe.php | 6 - mibs/cisco/CISCO-LWAPP-AP-MIB | 5643 +- mibs/cisco/CISCO-LWAPP-TC-MIB | 138 +- tests/data/iosxe_c9800.json | 3146 + tests/snmpsim/iosxe_c9800.snmprec | 107692 +++++++++++++++++++++++++++ 6 files changed, 116389 insertions(+), 276 deletions(-) create mode 100644 tests/data/iosxe_c9800.json create mode 100644 tests/snmpsim/iosxe_c9800.snmprec diff --git a/LibreNMS/OS/Ciscowlc.php b/LibreNMS/OS/Ciscowlc.php index 717707d002..fe40ce5594 100644 --- a/LibreNMS/OS/Ciscowlc.php +++ b/LibreNMS/OS/Ciscowlc.php @@ -33,6 +33,7 @@ use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; use LibreNMS\Interfaces\Polling\OSPolling; use LibreNMS\OS\Shared\Cisco; use LibreNMS\RRD\RrdDefinition; +use SnmpQuery; class Ciscowlc extends Cisco implements OSPolling, @@ -41,6 +42,10 @@ class Ciscowlc extends Cisco implements { public function pollOS(DataStorageInterface $datastore): void { + if (! $this->getDevice()->wirelessSensors()->where('sensor_class', 'ap-count')->exists()) { + return; // if ap count doesn't exist, skip this polling TODO replace with wireless controller module + } + $device = $this->getDeviceArray(); $apNames = \SnmpQuery::enumStrings()->walk('AIRESPACE-WIRELESS-MIB::bsnAPName')->table(1); $radios = \SnmpQuery::enumStrings()->walk('AIRESPACE-WIRELESS-MIB::bsnAPIfTable')->table(2); @@ -192,15 +197,36 @@ class Ciscowlc extends Cisco implements * * @return array Sensors */ - public function discoverWirelessApCount() + public function discoverWirelessApCount(): array { - $oids = [ + $data = SnmpQuery::get([ 'CISCO-LWAPP-SYS-MIB::clsSysApConnectCount.0', 'AIRESPACE-SWITCHING-MIB::agentInventoryMaxNumberOfAPsSupported.0', - ]; - $data = snmp_get_multi($this->getDeviceArray(), $oids); + 'CISCO-LWAPP-AP-MIB::cLApGlobalAPConnectCount.0', + 'CISCO-LWAPP-AP-MIB::cLApGlobalMaxApsSupported.0', + ])->values(); - if (isset($data[0]['clsSysApConnectCount'])) { + if (isset($data['CISCO-LWAPP-AP-MIB::cLApGlobalAPConnectCount.0'])) { + return [ + new WirelessSensor( + 'ap-count', + $this->getDeviceId(), + '.1.3.6.1.4.1.9.9.513.1.3.35.0', + 'ciscowlc', + 0, + 'Connected APs', + $data['CISCO-LWAPP-AP-MIB::cLApGlobalAPConnectCount.0'], + 1, + 1, + 'sum', + null, + $data['CISCO-LWAPP-AP-MIB::cLApGlobalMaxApsSupported.0'], + 0 + ), + ]; + } + + if (isset($data['CISCO-LWAPP-SYS-MIB::clsSysApConnectCount.0'])) { return [ new WirelessSensor( 'ap-count', @@ -209,12 +235,12 @@ class Ciscowlc extends Cisco implements 'ciscowlc', 0, 'Connected APs', - $data[0]['clsSysApConnectCount'], + $data['CISCO-LWAPP-SYS-MIB::clsSysApConnectCount.0'], 1, 1, 'sum', null, - $data[0]['agentInventoryMaxNumberOfAPsSupported'], + $data['AIRESPACE-SWITCHING-MIB::agentInventoryMaxNumberOfAPsSupported.0'], 0 ), ]; diff --git a/LibreNMS/OS/Iosxe.php b/LibreNMS/OS/Iosxe.php index e15d4c5f10..31c49131d5 100644 --- a/LibreNMS/OS/Iosxe.php +++ b/LibreNMS/OS/Iosxe.php @@ -31,7 +31,6 @@ use Illuminate\Support\Arr; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Log; use LibreNMS\DB\SyncsModels; -use LibreNMS\Interfaces\Data\DataStorageInterface; use LibreNMS\Interfaces\Discovery\IsIsDiscovery; use LibreNMS\Interfaces\Discovery\Sensors\WirelessCellDiscovery; use LibreNMS\Interfaces\Discovery\Sensors\WirelessChannelDiscovery; @@ -59,11 +58,6 @@ class Iosxe extends Ciscowlc implements use SyncsModels; use CiscoCellular; - public function pollOS(DataStorageInterface $datastore): void - { - // Don't poll Ciscowlc FIXME remove when wireless-controller module exists - } - /** * Array of shortened ISIS codes * diff --git a/mibs/cisco/CISCO-LWAPP-AP-MIB b/mibs/cisco/CISCO-LWAPP-AP-MIB index 2d4658cf68..96e8470045 100644 --- a/mibs/cisco/CISCO-LWAPP-AP-MIB +++ b/mibs/cisco/CISCO-LWAPP-AP-MIB @@ -2,7 +2,7 @@ -- CISCO-LWAPP-AP-MIB.my -- January 2006, Devesh Pujari, Prasanna Viswakumar, Srinath Candadai -- August 2010, Suja Thangaveluchamy --- Copyright (c) 2006-2007, 2010-2012, 2016-2018 by Cisco Systems, Inc. +-- Copyright (c) 2006-2007, 2010-2012, 2016-2022, 2024 by Cisco Systems, Inc. -- All rights reserved. -- ******************************************************************* @@ -45,7 +45,8 @@ IMPORTS CLApAssocFailureReason, CLApDot11RadioSubband, CLApDot11RadioRole, - CLApMode + CLApMode, + CLApNtpStatus FROM CISCO-LWAPP-TC-MIB cldRegulatoryDomain FROM CISCO-LWAPP-DOT11-MIB @@ -65,7 +66,7 @@ IMPORTS -- ******************************************************************** ciscoLwappApMIB MODULE-IDENTITY - LAST-UPDATED "201809300000Z" + LAST-UPDATED "202110010000Z" ORGANIZATION "Cisco Systems Inc." CONTACT-INFO "Cisco Systems, @@ -250,14 +251,14 @@ ciscoLwappApMIB MODULE-IDENTITY also support having private SSID whose data need to be switched at the AP itself. - ME + EWC - Mobility Express wireless network solution comprises of at + Embedded Wireless Controller on AP wireless network solution comprises of at least one 802.11ac Wave 2 Cisco Aironet Series access point (AP) with an in-built software-based wireless controller (WLC) managing other APs in the network. The AP acting as the WLC is referred to as the master AP while the other APs in the Cisco - Mobility Express network, which are managed by this master AP, + Embedded Wireless Controller network, which are managed by this master AP, are referred to as subordinate APs. In addition to acting as a WLC, the master AP also operates as an AP to serve clients along with the subordinate APs. @@ -301,7 +302,7 @@ ciscoLwappApMIB MODULE-IDENTITY security threats and RF Interference that may affect performance. Flexible Radio Assignment improves mobile user experience for high-density networks. - + XOR Radio XOR radio is a radio that can operate on both 2.4Ghz and 5Ghz @@ -314,43 +315,186 @@ ciscoLwappApMIB MODULE-IDENTITY [2] Draft-obara-capwap-lwapp-00.txt, IETF Light Weight Access Point Protocol." - REVISION "201809170000Z" + + REVISION "202206060000Z" + DESCRIPTION + "Added new table cLApWlanSlotStatsTable." + REVISION "202201010000Z" + DESCRIPTION + "Added following scalar object + - cLApIndoorMode." + REVISION "202110010000Z" + DESCRIPTION + "Added following scalar object + - clApImageUpgradeHttpsEnable. + Added cLAp11axObssPdSrgCapable to cLAp11axRadioConfigTable + Added ciscoLwappApRadioStuck to notification objects list" + REVISION "202106060000Z" + DESCRIPTION + "Added following scalar object + - cLApAuthorizeApMacMethodList + - cLApAuthorizeApSerialNumMethodList + Addition of cLApRogueDot11RadioBand + Added followig object to AP profile table + - cLApProfileCountryCode + - cLApProfileOeapRogueDetectionEnable + - cLApProfileOeapEncryptionEnable + - cLApProfileOeapLocalAccessEnable + - cLApProfileOeapProvSsidEnable" + REVISION "202010260000Z" + DESCRIPTION + "Added below notification objects + - cLApBrokenAntApName + - cLApBrokenAntInfo + Added below notification + - ciscoLwappBrokenAntennaDetails" + REVISION "202010080000Z" + DESCRIPTION + "Deprecated below objects from cLApDot11IfTable + - cLApDot11IfDualRadioOperation + - cLApDot11IfRadioRoleOperation + - cLApDot11IfRadioRole + - cLApDot11IfDualRadioMode + - cLApDot11IfDualRadioCapable + - cLApDot11IfRadioFRACapable + Deprecated compliance group ciscoLwappApMIBComplianceRev13 + Deprecated conformance group ciscoLwappApXorRadioGroupSup1 + Added compliance group ciscoLwappApMIBComplianceRev14 + Added conformance group ciscoLwappApXorRadioGroupSup2 + Added few values to cLApDot11RadioMode + Added slave enum to cLApDot11RadioSubType + Added cLAp11axObssPdCapable in cLAp11axRadioConfigTable" + REVISION "202009290000Z" + DESCRIPTION + "Added following scalar object + - cLApGlobalAPConnectCount + Depecated following object in the cLApEntry table + - cLApConnectCount + Deprecated the following compliance groups + - ciscoLwappApProfileGroupSup12 + - ciscoLwappApMIBComplianceRev12 + Added following compliance groups + - ciscoLwappApProfileGroupSup14 + - ciscoLwappApMIBComplianceRev13" + REVISION "202004280000Z" + DESCRIPTION + "Added following scalar object + - cLApGlobalAPAuditReport + - cLApGlobalAPAuditReportInterval + Added following objects to the cLApProfileEntry table + - cLApProfilePersistentSsidBroadcastEnable + - cLApProfileDhcpFallback + Added few values to cLApLastRebootReason" + REVISION "202003310000Z" + DESCRIPTION + "Added following objects to the cLApDot11IfEntry table + - cLApDot11IfDualRadioMode + - cLApDot11IfDualRadioCapable + - cLApDot11IfRadioFRACapable + - cLApDot11IfDualRadioOperation + - cLApDot11IfRadioRole + - cLApDot11IfRadioRoleOperation + Added following objects to the cLApProfileEntry table + - cLApProfileWindowSize + - cLApProfileCredentialGlobalSecretType + - cLApProfileCredentialGlobalPasswordType + - cLApProfile802dot1xSupplicantPasswordType + - cLApProfileBssidEnableStats + - cLApProfileBssidStatsFrequency" + REVISION "201911080000Z" + DESCRIPTION + "Addition of new table cLAPNtpInfoTable. + Added new group ciscoLwappApNtpInfo. + Added objects to compliance ciscoLwappApGroupSup9 + -cLAPNtpInfoState + -cLAPNtpInfoStatus + -cLAPNtpInfoStratum + -cLAPNtpInfoLastSync + -cLAPNtpInfoOffset + -cLAPNtpInfoIPAddressType + -cLAPNtpInfoIPAddress" + REVISION "201910160000Z" DESCRIPTION "Addition of following new table - - cLApProfileTable - - cLApProfileHaloBleBeaconTable - - cLApPacketCaptureProfileTable - - cLApPacketCaptureClientTable - - cLApPacketCaptureApTable - Added following object to the cLApTable - - cLApModeClear - - cLApSiteTagName - - cLApRfTagName - - cLApPolicyTagName - - cLApTagSource - - cLApUsbModuleName - - cLApUsbModuleState - - cLApUsbModuleProductId - - cLApUsbDescription - - cLApUsbStateInfo - - cLApUsbOverride - - cLApUsbSerialNumber - - cLApUsbMaxPower - Added following object to the cLApBleBeaconTable - - cLApBleBeaconAdvTxPower - Added following scalar object - - cLApAuthorizeApMacAuth - - cLApAuthorizeApSerialNumAuth - - cLApAuthorizeApMethodList - deprecated the following compliance group - - ciscoLwappApMIBComplianceRev7 + - cLAp11axRadioConfigTable + Addition of following object to cLApDot11IfTable + - cLApDot11IfPhyS80EightyChannelNumber + Addition of cLApProfileHaloBleBeaconRowStatus to + cLApProfileHaloBleBeaconTable to allow creation + of entries." + REVISION "201906250000Z" + DESCRIPTION + "Added following object to the cLApProfileTable + - cLApProfileClientRssiStatsEnabled + - cLApProfileClientRssiStatsReportInterval + - cLApProfileGasRateLimitEnable + - cLApProfileGasRateLimitNumReqPerInterval + - cLApProfileGasRateLimitIntervalMsec + - cLApProfileQoSMapApTrustsUpstreamDSCP + + + + + Added following object to the CLApEntry table + - cLApLagConfigStatus + - cLApMonitorModeOptStatus + + + + Deprecated the following compliance group + - ciscoLwappApProfileGroupSup1 + - ciscoLwappApMIBComplianceRev9 Added following compliance group - - ciscoLwappApMIBComplianceRev8 - Added following conformance group - - ciscoLwappApProfileHaloBleGroup - - ciscoLwappApProfileGroup - - ciscoLwappApPacketCaptureProfileGroup - - ciscoLwappApPacketCaptureClientProfileGroup." + - ciscoLwappApProfileGroupSup2 + - ciscoLwappApMIBComplianceRev10" + REVISION "201904080000Z" + DESCRIPTION + "Deprecatred following entries + - cLApProfileCredentialEnableGlobalCredentials + - cLApProfileOeapDisableLocalAccess + - cLApProfileRadioInterfaceShutdownEnabled + - cLApProfileEthernetInterfaceDowntime + - cLApProfile802dot1xAuthenticationEnabled + - cLApProfileVlanTagging + - cLApProfileApCountryCode + Updated cLApDot11IfAntennaId range" + REVISION "201809170000Z" + DESCRIPTION + "Addition of following new table + - cLApProfileTable + - cLApProfileHaloBleBeaconTable + - cLApPacketCaptureProfileTable + - cLApPacketCaptureClientTable + - cLApPacketCaptureApTable + Added following object to the cLApTable + - cLApModeClear + - cLApSiteTagName + - cLApRfTagName + - cLApPolicyTagName + - cLApTagSource + - cLApUsbModuleName + - cLApUsbModuleState + - cLApUsbModuleProductId + - cLApUsbDescription + - cLApUsbStateInfo + - cLApUsbOverride + - cLApUsbSerialNumber + - cLApUsbMaxPower + Added following object to the cLApBleBeaconTable + - cLApBleBeaconAdvTxPower + Added following scalar object + - cLApAuthorizeApMacAuth + - cLApAuthorizeApSerialNumAuth + - cLApAuthorizeApMethodList + deprecated the following compliance group + - ciscoLwappApMIBComplianceRev7 + Added following compliance group + - ciscoLwappApMIBComplianceRev8 + Added following conformance group + - ciscoLwappApProfileHaloBleGroup + - ciscoLwappApProfileGroup + - ciscoLwappApPacketCaptureProfileGroup + - ciscoLwappApPacketCaptureClientProfileGroup." REVISION "201807260000Z" DESCRIPTION "Added following objects to cLApDot11IfTable : @@ -359,11 +503,11 @@ ciscoLwappApMIB MODULE-IDENTITY REVISION "201806260000Z" DESCRIPTION "Added enums bleTxRx and bleRxOnly to cLApDot11RadioSubType." - REVISION "201803280000Z" - DESCRIPTION - "Added new object cLApDot11axSupport to the table - cLApDot11IfTable. - Added new group ciscoLwappApGroupSup11." + + + + + REVISION "201804240101Z" DESCRIPTION "Added the following objects @@ -377,6 +521,11 @@ ciscoLwappApMIB MODULE-IDENTITY - cLAdjChannelRogueEnabled - cLApWipsEnable - cLApNwLegacyBeamForming." + REVISION "201803280000Z" + DESCRIPTION + "Added new object cLApDot11axSupport to the table + cLApDot11IfTable. + Added new group ciscoLwappApGroupSup11." REVISION "201707070000Z" DESCRIPTION "Updated the descriptions." @@ -523,6 +672,14 @@ ciscoLwappApProfile OBJECT IDENTIFIER ciscoLwappApPacketCapture OBJECT IDENTIFIER ::= { ciscoLwappApMIBObjects 17 } +ciscoLwappApNtpInfo OBJECT IDENTIFIER + ::= { ciscoLwappApMIBObjects 18 } +ciscoLwappAp11axRadioConfig OBJECT IDENTIFIER + ::= { ciscoLwappApMIBObjects 21 } + +ciscoLwappApSlotWlanStats OBJECT IDENTIFIER + ::= { ciscoLwappApMIBObjects 22 } + -- ******************************************************************** -- APs that have joined the controller -- ******************************************************************** @@ -667,7 +824,10 @@ CLApEntry ::= SEQUENCE { cLApUsbStateInfo TruthValue, cLApUsbOverride TruthValue, cLApUsbSerialNumber SnmpAdminString, - cLApUsbMaxPower Unsigned32 + cLApUsbMaxPower Unsigned32, + cLApLagConfigStatus TruthValue, + cLApMonitorModeOptStatus TruthValue, + cLApFilterName SnmpAdminString } cLApSysMacAddress OBJECT-TYPE @@ -888,7 +1048,21 @@ cLApLastRebootReason OBJECT-TYPE lagCfg(70), fipsModeChange(71), diminishedPowerChange(72), - slubDebug(73) + slubDebug(73), + lscModeCapwap(74), + lscModeDot1x(75), + lscModeAll(76), + apTypeCloud(77), + dtlsInitFailure(78), + pnpNoCapwapBackOff(79), + day0CfgFail(80), + day1CfgFail(81), + pnpTriggeredReload(82), + triRadioSupport(83), + indoorDeployment(84), + apTypeWgbToCapwap(85), + apTypeCloudToCapwap(86), + apTypeWgb(87) } MAX-ACCESS read-only STATUS current @@ -1004,9 +1178,9 @@ cLApLastRebootReason OBJECT-TYPE address modeChange - rebooted due to mode change typeChangedToCapwap - rebooted due to type changed from - ME(Mobility Express) to CAPWAP + EWC(Embedded Wireless Controller) to CAPWAP typeChangedToMe - rebooted due to type changed from - CAPWAP to ME(Mobility Express) + CAPWAP to EWC(Embedded Wireless Controller) eraseCfgCommand - rebooted due to erase config command oeapModeCfgUpload - rebooted due to OEAP(Office Extended Access Point) mode config upload @@ -1016,7 +1190,21 @@ cLApLastRebootReason OBJECT-TYPE Information Processing Standards) mode change diminishedPowerChange - rebooted due to change in diminished power - slubDebug - rebooted due to slub debug" + slubDebug - rebooted due to slub debug + lscModeCapwap - LSC for CAPWAP + lscModeDot1x - LSC for Dot1x + lscModeAll - LSC for all + apTypeCloud - AP type changed to cloud + dtlsInitFailure - DTLS init failure + pnpNoCapwapBackOff - In PNP, no CAPWAP backoff for more than 24hrs + day0CfgFail - Day 0 config failure + day1CfgFail - Day 1 config failure + pnpTriggeredReload - Reboot triggered by PnP server + triRadioSupport - Tri-radio support change + indoorDeployment - Indoor Deployment + apTypeWgbToCapwap - AP type changed from WGB to CAPWAP + apTypeCloudToCapwap - AP type changed from cloud to CAPWAP + apTypeWgb - AP type changed from CAPWAP to WGB" ::= { cLApEntry 16 } cLApEncryptionEnable OBJECT-TYPE @@ -1802,7 +1990,7 @@ cLApFloorLabel OBJECT-TYPE cLApConnectCount OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only - STATUS current + STATUS deprecated DESCRIPTION "This object represents the Count of AP's that are connected to the Controller." @@ -2157,7 +2345,7 @@ cLApModeClear OBJECT-TYPE controller. Once cleared, AP may reboot and move to the AP mode based on current tag configuration. A value of 'true' indicates AP mode is cleared - A value of 'false' indicates AP mode is set" + A value of 'false' indicates AP mode is set" ::= { cLApEntry 103 } cLApSiteTagName OBJECT-TYPE @@ -2165,7 +2353,7 @@ cLApSiteTagName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies the site tag name of the AP" + "This object specifies the site tag name of the AP" ::= { cLApEntry 104 } cLApRfTagName OBJECT-TYPE @@ -2173,7 +2361,7 @@ cLApRfTagName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies the RF tag name of the AP" + "This object specifies the RF tag name of the AP" ::= { cLApEntry 105 } cLApPolicyTagName OBJECT-TYPE @@ -2181,7 +2369,7 @@ cLApPolicyTagName OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies the policy tag name of the AP." + "This object specifies the policy tag name of the AP." ::= { cLApEntry 106 } cLApTagSource OBJECT-TYPE @@ -2196,7 +2384,7 @@ cLApTagSource OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies the source of the tag." + "This object specifies the source of the tag." ::= { cLApEntry 107 } cLApUsbModuleName OBJECT-TYPE @@ -2205,7 +2393,7 @@ cLApUsbModuleName OBJECT-TYPE STATUS current DESCRIPTION "This object specifies module name of USB module - On the AP." + On the AP." ::= { cLApEntry 108 } cLApUsbModuleState OBJECT-TYPE @@ -2214,7 +2402,7 @@ cLApUsbModuleState OBJECT-TYPE STATUS current DESCRIPTION "This object specifies whether USB module detected or not - detected on the AP." + detected on the AP." ::= { cLApEntry 109 } cLApUsbModuleProductId OBJECT-TYPE @@ -2222,7 +2410,7 @@ cLApUsbModuleProductId OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies product Id of USB module on the AP." + "This object specifies product Id of USB module on the AP." ::= { cLApEntry 110 } cLApUsbDescription OBJECT-TYPE @@ -2230,7 +2418,7 @@ cLApUsbDescription OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "This object specifies description of USB module on the AP." + "This object specifies description of USB module on the AP." ::= { cLApEntry 111 } cLApUsbStateInfo OBJECT-TYPE @@ -2239,7 +2427,7 @@ cLApUsbStateInfo OBJECT-TYPE STATUS current DESCRIPTION "This object specifies State(enable/disable) of USB module - on the AP." + on the AP." ::= { cLApEntry 112 } cLApUsbOverride OBJECT-TYPE @@ -2248,7 +2436,7 @@ cLApUsbOverride OBJECT-TYPE STATUS current DESCRIPTION "This object specifies Override(enable/disable) of USB module - on the AP." + on the AP." ::= { cLApEntry 113 } cLApUsbSerialNumber OBJECT-TYPE @@ -2257,7 +2445,7 @@ cLApUsbSerialNumber OBJECT-TYPE STATUS current DESCRIPTION "This object specifies serial number of USB module - on the AP." + on the AP." ::= { cLApEntry 114 } cLApUsbMaxPower OBJECT-TYPE @@ -2266,9 +2454,35 @@ cLApUsbMaxPower OBJECT-TYPE STATUS current DESCRIPTION "This object specifies max power given to USB module - on the AP." + on the AP." ::= { cLApEntry 115 } +cLApLagConfigStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the configured LAG status(enable/disable) + on the AP." + ::= { cLApEntry 116 } + +cLApMonitorModeOptStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the Monitor Mode optimization support(enable/disable) + on the AP." + ::= { cLApEntry 117 } + +cLApFilterName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the Filter name applied on this AP" + ::= { cLApEntry 118 } + -- ******************************************************************** -- * AP Dot11 Interface Information @@ -2336,7 +2550,16 @@ CLApDot11IfEntry ::= SEQUENCE { cLApDot11IfSensorReachability Unsigned32, cLApDot11axSupport TruthValue, cLApFraCoverageOverlapFactor Integer32, - cLApFraSuggestedMode INTEGER + cLApFraSuggestedMode INTEGER, + cLApDot11IfDualRadioMode INTEGER, + cLApDot11IfDualRadioCapable INTEGER, + cLApDot11IfRadioFRACapable INTEGER, + cLApDot11IfPhyS80EightyChannelNumber INTEGER, + cLApDot11IfDualRadioOperation INTEGER, + cLApDot11IfRadioRoleOperation INTEGER, + cLApDot11IfRadioRole INTEGER, + cLApDot11IfRptncPresent TruthValue, + cLApDot11IfDartPresent TruthValue } cLApDot11IfSlotId OBJECT-TYPE @@ -2587,7 +2810,8 @@ cLAp11ChannelBandwidth OBJECT-TYPE twenty(3), fourty(4), eighty(5), - onesixty(6) + onesixty(6), + eightyeighty(7) } UNITS "mhz" MAX-ACCESS read-write @@ -2640,15 +2864,17 @@ cLApDot11XorRadioMode OBJECT-TYPE cLApDot11XorRadioBand OBJECT-TYPE SYNTAX INTEGER { radioband24G(1), - radioband5G(2) + radioband5G(2), + radioband6G(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "This object specifies the operating band of - XOR radio. + the dot11 interface of an AP. radioband24G - operating band for xor radio is 2.4GHz. - radioband5G - operating band for xor radio is 5GHz." + radioband5G - operating band for xor radio is 5GHz. + radioband6G - operating band for xor radio is 6GHz" ::= { cLApDot11IfEntry 27 } cLApDot11XorRadioRoleAssignment OBJECT-TYPE @@ -2730,6 +2956,135 @@ cLApFraSuggestedMode OBJECT-TYPE notApplicable - Radio is not XOR." ::= { cLApDot11IfEntry 33 } +cLApDot11IfDualRadioMode OBJECT-TYPE + SYNTAX INTEGER { + none(1), + enabled(2), + disabled(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object represents dual radio mode status of radio + enabled - Dual radio mode is enabled. + disabled- Dual radio mode is disabled. + None - Radio is not dual radio mode capable." + ::= { cLApDot11IfEntry 34 } + +cLApDot11IfDualRadioCapable OBJECT-TYPE + SYNTAX INTEGER { + notcapable(0), + dualmodecapable(1) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object represents whether radio is dual radio capable or + not" + ::= { cLApDot11IfEntry 35 } + +cLApDot11IfRadioFRACapable OBJECT-TYPE + SYNTAX INTEGER { + notcapable(0), + capable(1) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object represents whether radio is FRA capable or not." + ::= { cLApDot11IfEntry 36 } + +cLApDot11IfPhyS80EightyChannelNumber OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Secondary 80MHz channel number of the AP Interface. + Allowed channel numbers also depends on the current + Country Code set in the Switch." + ::= { cLApDot11IfEntry 37 } + +--cLApDot11IfChannelWidthCapability OBJECT-TYPE +-- SYNTAX INTEGER { +-- notsupported(0), +-- eightycontiguous(1), +-- eightynoncontiguous(2), +-- onesixty(4) +-- } +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- "This Object represents channel width capability." +-- ::= { cLApDot11IfEntry 38 } + +cLApDot11IfDualRadioOperation OBJECT-TYPE + SYNTAX INTEGER { + none(1), + auto(2), + manual(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object represents dual radio mode operation of + the slot. + auto - Dual radio mode is automatic. + manual - Dual radio mode is configurable manually. + none - Radio is not dual radio mode capable." + ::= { cLApDot11IfEntry 39 } + +cLApDot11IfRadioRoleOperation OBJECT-TYPE + SYNTAX INTEGER { + none(1), + auto(2), + manual(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object represents the radio role operation + of the slot. + auto - Radio role assignment is automatic. + manual - Radio role assignment is manual." + ::= { cLApDot11IfEntry 40 } + + +cLApDot11IfRadioRole OBJECT-TYPE + SYNTAX INTEGER { + none(1), + local(2), + monitor(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object represents the role for the slot. + local - The means the slot is capable of serving clients. + monitor - The slot does not serves client, only monitors." + ::= { cLApDot11IfEntry 41 } + +cLApDot11IfRptncPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether Self Identifying Antenna RP-TNC is + present for the radio. + A value of 'true' indicates SIA RP-TNC is present. + A value of 'false' indicates SIA RP-TNC is not present." + ::= { cLApDot11IfEntry 42 } + +cLApDot11IfDartPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether Self Identifying Antenna DART is + present for the radio + A value of 'true' indicates SIA DART is present. + A value of 'false' indicates SIA DART is not present." + ::= { cLApDot11IfEntry 43 } + -- ******************************************************************** -- * AP Ethernet Interface Information @@ -3292,7 +3647,9 @@ cLApDot11RadioMode OBJECT-TYPE sniffer(5), bridge(6), seConnect(7), - hybridRemote(8) + remoteBridge(8), + hybridRemote(9), + sensor(10) } MAX-ACCESS read-only STATUS current @@ -3315,8 +3672,12 @@ cLApDot11RadioMode OBJECT-TYPE seConnect(7) : AP is connected to spectrum expert. The AP is able to perform spectrum intelligence. - hybridRemote(8) : A mode for branch office and - remote office deployment." + remoteBridge(8) : This mode indicates that AP is a remote + lightweight access point with root AP + connected. + hybridRemote(9) : A mode for branch office and + remote office deployment. + sensor(10) : A sensor mode AP." ::= { cLApDot11RadioEntry 6 } cLApDot11RadioSubType OBJECT-TYPE @@ -3327,7 +3688,8 @@ cLApDot11RadioSubType OBJECT-TYPE remoteLan(4), xorTxRx(5), bleTxRx(6), - bleRxOnly(7) + bleRxOnly(7), + slave(8) } MAX-ACCESS read-only STATUS current @@ -3340,7 +3702,8 @@ cLApDot11RadioSubType OBJECT-TYPE remoteLan(4) :Remote-LAN supported Slot. xorTxRx(5) :Xor radio capable of both TX and RX. bleTxRx(6) :radio operating normally and BLE is enabled for the AP. - bleRxOnly(7) :radio is explicitly used for monitor mode operation and BLE is enabled for the AP." + bleRxOnly(7) :radio is explicitly used for monitor mode operation and BLE is enabled for the AP. + slave(8) :radio operating as slave." ::= { cLApDot11RadioEntry 7 } @@ -3672,7 +4035,8 @@ CLAplanStatsEntry ::= SEQUENCE { cLApLanPortState TruthValue, cLApLanPortVlanId Unsigned32, cLApLanPortVlanIdValid TruthValue, - cLApLanPoeState TruthValue + cLApLanPoeState TruthValue, + cLApLanPowerLevelId Unsigned32 } cLApLanPortId OBJECT-TYPE @@ -3735,6 +4099,16 @@ cLApLanPoeState OBJECT-TYPE DEFVAL { false } ::= { cLAplanStatsEntry 5 } +cLApLanPowerLevelId OBJECT-TYPE + SYNTAX Unsigned32 (1..4) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the power level + of the port" + DEFVAL { 4 } + ::= { cLAplanStatsEntry 6 } + cLAplanOverrideTable OBJECT-TYPE @@ -3879,6 +4253,114 @@ cLApWlanStatsOnlineUserNum OBJECT-TYPE ::= { cLApWlanStatsEntry 7 } +-- ******************************************************************** +-- * AP slot WLAN Stats. +-- ******************************************************************** + +cLApSlotWlanStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CLApSlotWlanStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents Per-AP, Per-Slot, Per-SSID + Stats information of packets/bytes sent/received, + retransmission counter, associated clients counter, + etc." + ::= { ciscoLwappApSlotWlanStats 1 } + +cLApSlotWlanStatsEntry OBJECT-TYPE + SYNTAX CLApSlotWlanStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This entry contains stats information of + packets/bytes sent/received, retransmission counter, + associated clients counter, and etc." + INDEX { + cLApSysMacAddress, + cLApDot11IfSlotId, + cLWlanIndex + } + ::= { cLApSlotWlanStatsTable 1 } + +CLApSlotWlanStatsEntry ::= SEQUENCE { + cLApSlotWlanStatsTxPktNum Counter64, + cLApSlotWlanStatsTxOctetNum Counter64, + cLApSlotWlanStatsRxPktNum Counter64, + cLApSlotWlanStatsRxOctetNum Counter64, + cLApSlotWlanStatsRetransmitNum Counter64, + cLApSlotWlanStatsAssocClientNum Unsigned32, + cLApSlotWlanStatsOnlineUserNum Unsigned32 +} + +cLApSlotWlanStatsTxPktNum OBJECT-TYPE + SYNTAX Counter64 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the transmitted packets counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 1 } + +cLApSlotWlanStatsTxOctetNum OBJECT-TYPE + SYNTAX Counter64 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the transmitted bytes counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 2 } + +cLApSlotWlanStatsRxPktNum OBJECT-TYPE + SYNTAX Counter64 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the received packets counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 3 } + +cLApSlotWlanStatsRxOctetNum OBJECT-TYPE + SYNTAX Counter64 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the received bytes counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 4 } + +cLApSlotWlanStatsRetransmitNum OBJECT-TYPE + SYNTAX Counter64 + UNITS "packets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the packet retransmission counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 5 } + +cLApSlotWlanStatsAssocClientNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the associated client counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 6 } + +cLApSlotWlanStatsOnlineUserNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the online user counter of + the specific radio and wlan on this access point." + ::= { cLApSlotWlanStatsEntry 7 } + -- ******************************************************************** -- * AP Station Mgmt(SMT) Parameters -- ******************************************************************** @@ -4887,7 +5369,7 @@ cLApAuthorizeApMacAuth OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This flag specifies the status of mac auth" + "This flag specifies the status of mac auth" ::= { ciscoLwappApGlobal 30 } cLApAuthorizeApSerialNumAuth OBJECT-TYPE @@ -4895,7 +5377,7 @@ cLApAuthorizeApSerialNumAuth OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This flag specifies the status of serial number auth" + "This flag specifies the status of serial number auth" ::= { ciscoLwappApGlobal 31 } cLApAuthorizeApMethodList OBJECT-TYPE @@ -4903,10 +5385,74 @@ cLApAuthorizeApMethodList OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies the method list used for the AP + "This object specifies the method list used for the AP authorization when enabled. - The default method list is default" + The default method list is default" ::= { ciscoLwappApGlobal 32 } + +cLApGlobalAPAuditReport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to enable/disable AP audit reporting. + It is disabled by default" + ::= { ciscoLwappApGlobal 33 } + +cLApGlobalAPAuditReportInterval OBJECT-TYPE + SYNTAX Unsigned32 (10..43200) + UNITS "Minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the audit report interval in minutes. + The default interval is 1440 minutes" + ::= { ciscoLwappApGlobal 34 } + +cLApGlobalAPConnectCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the Count of AP's that are connected + to the Controller." + ::= { ciscoLwappApGlobal 35 } + +cLApAuthorizeApMacMethodList OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the method list used for the AP + MAC authorization when enabled." + ::= { ciscoLwappApGlobal 36 } + +cLApAuthorizeApSerialNumMethodList OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the method list used for the AP + serial number authorization when enabled." + ::= { ciscoLwappApGlobal 37 } + +clApImageUpgradeConfig OBJECT IDENTIFIER + ::= { ciscoLwappApGlobal 38 } + +clApImageUpgradeHttpsEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the state of AP Image Upgrade method HTTPS + on the controller. + A value of 'true' indicates that the AP Image Upgrade method + HTTPS is enabled. + A value of 'false' indicates that the AP Image Upgrade method + HTTPS is disabled." + DEFVAL { false } + ::= { clApImageUpgradeConfig 1 } + -- ******************************************************************** -- * AP Dot11 Interface Antenna Information -- ******************************************************************** @@ -4949,7 +5495,7 @@ CLApDot11IfAntennaEntry ::= SEQUENCE { } cLApDot11IfAntennaId OBJECT-TYPE - SYNTAX Unsigned32 (1..3) + SYNTAX Unsigned32 (1..8) MAX-ACCESS not-accessible STATUS current DESCRIPTION @@ -5822,7 +6368,8 @@ CLApExtEntry ::= SEQUENCE { cLApStaticIpNetmaskType InetAddressType, cLApStaticIpNetmask InetAddress, cLApPreferMode INTEGER, - cLApPreferModeApplied INTEGER + cLApPreferModeApplied INTEGER, + cLApIndoorMode INTEGER } cLApLEDFlashStatus OBJECT-TYPE @@ -5967,7 +6514,16 @@ cLApPreferModeApplied OBJECT-TYPE apgroup - capwap prefer mode applied at ap group level. global - capwap prefer mode applied globally." ::= { cLApExtEntry 14 } - + +cLApIndoorMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the indoor/outdoor mode of the AP. + A value of 'true' indicates AP is in Indoor Mode. + A value of 'false' indicates AP is in Outdoor Mode." + ::= { cLApExtEntry 17 } -- ******************************************************************** -- * AP Sys Info @@ -6739,7 +7295,28 @@ CLApProfileEntry ::= SEQUENCE { cLApProfileCoreDumpTftpAddressType InetAddressType, cLApProfileCoreDumpTftpAddress InetAddress, cLApProfileCoreDumpCoreFileName SnmpAdminString, - cLApProfileBackupFallbackEnabled TruthValue + cLApProfileBackupFallbackEnabled TruthValue, + cLApProfileClientRssiStatsEnabled TruthValue, + cLApProfileClientRssiStatsReportInterval Unsigned32, + cLApProfileGasRateLimitEnable TruthValue, + cLApProfileGasRateLimitNumReqPerInterval INTEGER, + cLApProfileGasRateLimitIntervalMsec INTEGER, + cLApProfileQoSMapApTrustsUpstreamDSCP TruthValue, + cLApProfileUdpliteState INTEGER, + cLApProfileMethodListName SnmpAdminString, + cLApProfileWindowSize INTEGER, + cLApProfileCredentialGlobalSecretType INTEGER, + cLApProfileCredentialGlobalPasswordType INTEGER, + cLApProfile802dot1xSupplicantPasswordType INTEGER, + cLApProfileBssidEnableStats TruthValue, + cLApProfileBssidStatsFrequency INTEGER, + cLApProfilePersistentSsidBroadcastEnable TruthValue, + cLApProfileDhcpFallback TruthValue, + cLApProfileOeapRogueDetectionEnable TruthValue, + cLApProfileOeapEncryptionEnable TruthValue, + cLApProfileOeapLocalAccessEnable TruthValue, + cLApProfileOeapProvSsidEnable TruthValue, + cLApProfileCountryCode INTEGER } cLApProfileName OBJECT-TYPE @@ -6747,8 +7324,8 @@ cLApProfileName OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "This object specifies one instance of an AP Profile on the - controller." + "This object specifies one instance of an AP Profile on the + controller." ::= { cLApProfileEntry 1 } cLApProfileRowStatus OBJECT-TYPE @@ -6757,7 +7334,7 @@ cLApProfileRowStatus OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the row to be added or - deleted in this table." + deleted in this table." ::= { cLApProfileEntry 2 } cLApProfileCredentialGlobalUserName OBJECT-TYPE @@ -6765,7 +7342,7 @@ cLApProfileCredentialGlobalUserName OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies the global username for the APs + "This object specifies the global username for the APs associated to a particular AP Profile. This user name is used to access the console on the AP." ::= { cLApProfileEntry 3 } @@ -6777,7 +7354,7 @@ cLApProfileCredentialGlobalPassword OBJECT-TYPE DESCRIPTION "This object specifies the password corresponding to the user name represented by cLApProfileCredentialGlobalUserName - object." + object." ::= { cLApProfileEntry 4 } cLApProfileCredentialGlobalSecret OBJECT-TYPE @@ -6793,7 +7370,7 @@ cLApProfileCredentialGlobalSecret OBJECT-TYPE cLApProfileCredentialEnableGlobalCredentials OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-create - STATUS current + STATUS deprecated DESCRIPTION "This object specifies whether the global credentials for the APs associated to a particular AP Profile is enabled or @@ -6806,7 +7383,7 @@ cLApProfileCredentialEnableGlobalCredentials OBJECT-TYPE ::= { cLApProfileEntry 6 } cLApProfileLinkLatencyEnable OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { disable(1), enable(2), data(3), @@ -6824,7 +7401,7 @@ cLApProfileLinkLatencyEnable OBJECT-TYPE data - enables data link latency on the APs associated to a particular AP profile. reset - reset the link latency on the APs associated to - a particular AP profile." + a particular AP profile." ::= { cLApProfileEntry 7 } cLApProfileHaloBleBeaconInterval OBJECT-TYPE @@ -6837,7 +7414,7 @@ cLApProfileHaloBleBeaconInterval OBJECT-TYPE beacon transmissions. This value is common to HALO enabled APs that have joined the controller under the same AP profile." - DEFVAL { 1 } + DEFVAL { 1 } ::= { cLApProfileEntry 8 } cLApProfileFastHbTimerTimeout OBJECT-TYPE @@ -6855,10 +7432,10 @@ cLApProfileFastHbTimerEnabled OBJECT-TYPE MAX-ACCESS read-write STATUS deprecated DESCRIPTION - "This object specifies if Fast Heart Beat Timer is enabled or + "This object specifies if Fast Heart Beat Timer is enabled or not. A value of 'true' indicates that this timer is enabled. - A value of 'false' indicates that this timer is disabled." + A value of 'false' indicates that this timer is disabled." ::= { cLApProfileEntry 13 } cLApProfilePrimaryDiscoveryTimeout OBJECT-TYPE @@ -6869,7 +7446,7 @@ cLApProfilePrimaryDiscoveryTimeout OBJECT-TYPE DESCRIPTION "This object specifies the timeout value for the primary AP discovery for a given Ap profile." - DEFVAL { 120 } + DEFVAL { 120 } ::= { cLApProfileEntry 14 } cLApProfileBackupPrimaryControllerAddressType OBJECT-TYPE @@ -6879,7 +7456,7 @@ cLApProfileBackupPrimaryControllerAddressType OBJECT-TYPE DESCRIPTION "This object specifies the type of the primary controller's address made available through - cLApProfileBackupPrimaryControllerAddress." + cLApProfileBackupPrimaryControllerAddress." ::= { cLApProfileEntry 15 } cLApProfileBackupPrimaryControllerAddress OBJECT-TYPE @@ -6890,7 +7467,7 @@ cLApProfileBackupPrimaryControllerAddress OBJECT-TYPE "This object specifies the address of the primary controller that the APs in the profile should associate with. The name and address should be provided in the same set request. An address - of all zeros will unset the primary controller." + of all zeros will unset the primary controller." ::= { cLApProfileEntry 16 } cLApProfileBackupPrimaryControllerName OBJECT-TYPE @@ -6899,7 +7476,7 @@ cLApProfileBackupPrimaryControllerName OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the name of the primary controller - that the APs in the profile should associate with." + that the APs in the profile should associate with." ::= { cLApProfileEntry 17 } cLApProfileBackupSecondaryControllerAddressType OBJECT-TYPE @@ -6930,7 +7507,7 @@ cLApProfileBackupSecondaryControllerName OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the name of the secondary controller - that the APs in the profile should associate." + that the APs in the profile should associate." ::= { cLApProfileEntry 20 } cLApProfileBackupTertiaryControllerAddressType OBJECT-TYPE @@ -6952,7 +7529,7 @@ cLApProfileBackupTertiaryControllerAddress OBJECT-TYPE controller that the APs in the profile should associate with. The name and address should be provided in the same set request. An address of all zeros will unset the tertiary - controller." + controller." ::= { cLApProfileEntry 22 } cLApProfileBackupTertiaryControllerName OBJECT-TYPE @@ -6961,7 +7538,7 @@ cLApProfileBackupTertiaryControllerName OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the name of the tertiary controller - that the APs in the profile should associate with" + that the APs in the profile should associate with" ::= { cLApProfileEntry 23 } cLApProfileTcpMss OBJECT-TYPE @@ -6973,7 +7550,7 @@ cLApProfileTcpMss OBJECT-TYPE The permissible value are between 536 and 1363. This will also enable the global TCP MSS flag. Any change of value for this object will be reflected - to cLApTcpMss" + to cLApTcpMss" ::= { cLApProfileEntry 25 } cLApProfileRetransmitCount OBJECT-TYPE @@ -6986,7 +7563,7 @@ cLApProfileRetransmitCount OBJECT-TYPE control packet for all APs associated to this particular AP profile. This value represents the number of packets retransmitted after which the Access Point falls back to - another controller in case of failover." + another controller in case of failover." ::= { cLApProfileEntry 26 } cLApProfileRetransmitTimeout OBJECT-TYPE @@ -7000,13 +7577,13 @@ cLApProfileRetransmitTimeout OBJECT-TYPE profile. This value represents the timeout for each control Packet of all the Access Points, joined to this retransmission, during the fallback of Access Point to - another controller in case of failover." + another controller in case of failover." ::= { cLApProfileEntry 27 } cLApProfileOeapDisableLocalAccess OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object specifies whether the local access is supported for all the Office Extended Access Points associated to current AP @@ -7021,13 +7598,13 @@ cLApProfileLedState OBJECT-TYPE DESCRIPTION "This object specifies whether the LED state of all the access points associated to a profile should be enabled or - disabled." + disabled." ::= { cLApProfileEntry 29 } cLApProfileRadioInterfaceShutdownEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object allows the user to enable or disable radio interface of all the APs associated to current AP Profile. @@ -7044,7 +7621,7 @@ cLApProfileEthernetInterfaceDowntime OBJECT-TYPE SYNTAX Unsigned32 UNITS "Seconds" MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object specifies the ethernet interface down time after which the AP radio interface will be shut down for Aps in a @@ -7056,7 +7633,7 @@ cLApProfileMulticastGroupAddressType OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies the AP multicast group address type." + "This object specifies the AP multicast group address type." ::= { cLApProfileEntry 32 } cLApProfileMulticastGroupAddress OBJECT-TYPE @@ -7065,22 +7642,22 @@ cLApProfileMulticastGroupAddress OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the IPv6 multicast group address of all - the APs associated to current AP Profile." + the APs associated to current AP Profile." ::= { cLApProfileEntry 33 } cLApProfileMulticastMode OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { unicast(1), multicast(2) } MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies the ethernet multicast support of all + "This object specifies the ethernet multicast support of all the APs associated to current AP Profile. unicast - Controller will convert multicast to unicast packet. - multicast - Multicast mode is enabled." + multicast - Multicast mode is enabled." ::= { cLApProfileEntry 34 } cLApProfilePrimedJoinTimeout OBJECT-TYPE @@ -7090,11 +7667,11 @@ cLApProfilePrimedJoinTimeout OBJECT-TYPE STATUS current DESCRIPTION "This object specifies the primed timeout for the AP - discovery for a given profile." + discovery for a given profile." ::= { cLApProfileEntry 35 } cLApProfilePreferMode OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { unconfig(1), ipv4(2), ipv6(3) @@ -7114,18 +7691,18 @@ cLApProfileApLagEnabled OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies the ap-lag capability state of all the + "This object specifies the ap-lag capability state of all the APs associated to current AP profile. A value of 'true' indicates the ap-lag capability state is enabled. A value of 'false' indicates the ap-lag capability state is - disabled." + disabled." ::= { cLApProfileEntry 37 } cLApProfile802dot1xAuthenticationEnabled OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object represents the 802.1x supplicant authentication feature of APs associated to current AP Profile. @@ -7179,7 +7756,7 @@ cLApProfileEncryptionEnable OBJECT-TYPE A value of 'false' disables encryption between controller and AP." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 41 } cLApProfileTelnetEnable OBJECT-TYPE @@ -7195,7 +7772,7 @@ cLApProfileTelnetEnable OBJECT-TYPE A value of 'false' indicates an Telnet session cannot be established to the APs in a given AP profile." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 42 } cLApProfileSshEnable OBJECT-TYPE @@ -7211,7 +7788,7 @@ cLApProfileSshEnable OBJECT-TYPE A value of 'false' indicates an SSH session cannot be established to the APs asscoaited to an AP Profile." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 43 } cLApProfileHyperlocationEnable OBJECT-TYPE @@ -7222,7 +7799,7 @@ cLApProfileHyperlocationEnable OBJECT-TYPE "This object represents the admin status of Hyperlocation. A value of 'true' indicates that Hyperlocation is enabled. A value of 'false' indicates that Hyperlocation is disabled." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 44 } cLApProfileHyperlocationDetectionThreshold OBJECT-TYPE @@ -7234,7 +7811,7 @@ cLApProfileHyperlocationDetectionThreshold OBJECT-TYPE "This object represents the value of the Hyperlocation detection threshold expressed in dBm. Valid range is -100 dbm to -50 dbm." - DEFVAL { -100 } + DEFVAL { -100 } ::= { cLApProfileEntry 45 } cLApProfileHyperlocationResetThreshold OBJECT-TYPE @@ -7246,7 +7823,7 @@ cLApProfileHyperlocationResetThreshold OBJECT-TYPE reset threshold expressed in scan cycles. Valid range is 0 to 99 scan cycles. Its value must always be smaller than the trigger threshold." - DEFVAL { 8 } + DEFVAL { 8 } ::= { cLApProfileEntry 46 } cLApProfileHyperlocationTriggerThreshold OBJECT-TYPE @@ -7257,7 +7834,7 @@ cLApProfileHyperlocationTriggerThreshold OBJECT-TYPE "This object represents the value of the Hyperlocation trigger threshold expressed in scan cycles. Valid range is 1 to 100 scan cycles." - DEFVAL { 10 } + DEFVAL { 10 } ::= { cLApProfileEntry 47 } cLApProfileHyperlocationNtpIpAddressType OBJECT-TYPE @@ -7266,7 +7843,7 @@ cLApProfileHyperlocationNtpIpAddressType OBJECT-TYPE STATUS current DESCRIPTION "This object represents the NTP server IP address type - configured for Hyperlocation feature." + configured for Hyperlocation feature." ::= { cLApProfileEntry 48 } cLApProfileHyperlocationNtpIpAddress OBJECT-TYPE @@ -7275,7 +7852,7 @@ cLApProfileHyperlocationNtpIpAddress OBJECT-TYPE STATUS current DESCRIPTION "This object represents the NTP server IP address - configured for Hyperlocation feature." + configured for Hyperlocation feature." ::= { cLApProfileEntry 49 } cLApProfileAdjustMss OBJECT-TYPE @@ -7284,7 +7861,7 @@ cLApProfileAdjustMss OBJECT-TYPE STATUS current DESCRIPTION "To enable the TCP MSS flag" - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 50 } cLApProfileDiscoveryTimeout OBJECT-TYPE @@ -7295,7 +7872,7 @@ cLApProfileDiscoveryTimeout OBJECT-TYPE DESCRIPTION "This object represents the timeout for the AP discovery for a particular AP profile." - DEFVAL { 10 } + DEFVAL { 10 } ::= { cLApProfileEntry 51 } cLApProfileHeartBeatTimeout OBJECT-TYPE @@ -7304,9 +7881,9 @@ cLApProfileHeartBeatTimeout OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object represents the Heart beat timeout for the APs in + "This object represents the Heart beat timeout for the APs in a particular AP profile." - DEFVAL { 30 } + DEFVAL { 30 } ::= { cLApProfileEntry 52 } cLApProfileCdpEnable OBJECT-TYPE @@ -7314,9 +7891,9 @@ cLApProfileCdpEnable OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object specifies to enable the CDP for all APs + "This object specifies to enable the CDP for all APs associated to particular AP Profile" - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 53 } cLApProfileApPacketCaptureProfile OBJECT-TYPE @@ -7327,7 +7904,7 @@ cLApProfileApPacketCaptureProfile OBJECT-TYPE "This object represents the AP packet capture profile name mapped to this AP join profile. Access Points in this AP join profile will use the parameters of packet capture - profile" + profile" ::= { cLApProfileEntry 54 } cLApProfileRogueReportInterval OBJECT-TYPE @@ -7339,7 +7916,7 @@ cLApProfileRogueReportInterval OBJECT-TYPE "This object specifies the rogue report interval, which is the interval that monitor mode APs send rogue detection details to the controller. - This value is valid only for the current AP Profile." + This value is valid only for the current AP Profile." ::= { cLApProfileEntry 55 } cLApProfileRogueMinimumRssi OBJECT-TYPE @@ -7350,7 +7927,7 @@ cLApProfileRogueMinimumRssi OBJECT-TYPE DESCRIPTION "This object specifies the minimum value of RSSI considered for detection of rogues. - This value is valid only for the current AP Profile." + This value is valid only for the current AP Profile." ::= { cLApProfileEntry 56 } cLApProfileRogueTransientInterval OBJECT-TYPE @@ -7369,7 +7946,7 @@ cLApProfileRogueTransientInterval OBJECT-TYPE rogue detection details to the controller if it hears the rogue more than once in the specified interval." - DEFVAL { 0 } + DEFVAL { 0 } ::= { cLApProfileEntry 57 } cLApProfileRogueContainFlexconnect OBJECT-TYPE @@ -7381,7 +7958,7 @@ cLApProfileRogueContainFlexconnect OBJECT-TYPE standalone flexconnect APs is enabled in this AP Profile. A value of 'true' enables rogue containment. A value of 'false' disables rogue containment." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 58 } cLApProfileRogueContainAutoRateEnable OBJECT-TYPE @@ -7393,7 +7970,7 @@ cLApProfileRogueContainAutoRateEnable OBJECT-TYPE is enabled in this AP Profile. A value of 'true' enables auto-rate. A value of 'false' disables auto-rate." - DEFVAL { false } + DEFVAL { false } ::= { cLApProfileEntry 59 } cLApProfileRogueDetectionEnable OBJECT-TYPE @@ -7407,7 +7984,7 @@ cLApProfileRogueDetectionEnable OBJECT-TYPE A value of 'false' disables Rogue Detection. Rogue detection is not supported on sniffer and rogue detector mode APs." - DEFVAL { true } + DEFVAL { true } ::= { cLApProfileEntry 60 } cLApProfileReportInterval24ghz OBJECT-TYPE @@ -7419,7 +7996,7 @@ cLApProfileReportInterval24ghz OBJECT-TYPE "This object specifies the interval at which APs connected will send client statitics for 802.11b radio for a particular AP profile." - DEFVAL { 90 } + DEFVAL { 90 } ::= { cLApProfileEntry 61 } cLApProfileReportInterval5ghz OBJECT-TYPE @@ -7431,11 +8008,11 @@ cLApProfileReportInterval5ghz OBJECT-TYPE "This object specifies the interval at which APs connected will send client statitics for 802.11a radio for a particular AP profile" - DEFVAL { 90 } + DEFVAL { 90 } ::= { cLApProfileEntry 62 } cLApProfileDot1xApSwitchEapAuth OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { eapNone(1), eapFast(2), eapTls(3), @@ -7445,11 +8022,11 @@ cLApProfileDot1xApSwitchEapAuth OBJECT-TYPE STATUS current DESCRIPTION "This object specifies Dot1x EAP type - in this AP Profile." + in this AP Profile." ::= { cLApProfileEntry 63 } cLApProfileDot1xApSwtichLscAuth OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { authNone(1), authCapwapDtls(2), authDot1xPort(3), @@ -7459,7 +8036,7 @@ cLApProfileDot1xApSwtichLscAuth OBJECT-TYPE STATUS current DESCRIPTION "This object specifies Dot1x LSC AP Auth - type in this AP Profile." + type in this AP Profile." ::= { cLApProfileEntry 64 } cLApProfileMeshProfileName OBJECT-TYPE @@ -7468,7 +8045,7 @@ cLApProfileMeshProfileName OBJECT-TYPE STATUS current DESCRIPTION "This object uniquely identifies a mesh profile in a - particular AP profile." + particular AP profile." ::= { cLApProfileEntry 65 } cLApProfileUsbStatus OBJECT-TYPE @@ -7478,13 +8055,13 @@ cLApProfileUsbStatus OBJECT-TYPE DESCRIPTION "This object specifies USB status(enable/disable) to be applied to all APs belonging to this AP join profile." - DEFVAL { true } + DEFVAL { true } ::= { cLApProfileEntry 66 } cLApProfileVlanTagging OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object specifies whether the Vlan tagging of all the APs associated to current AP Profile should be enabled or disabled." @@ -7494,12 +8071,13 @@ cLApProfileVlanTagging OBJECT-TYPE cLApProfileApCountryCode OBJECT-TYPE SYNTAX SnmpAdminString (SIZE (0..32)) MAX-ACCESS read-write - STATUS current + STATUS deprecated DESCRIPTION "This object represents the AP country code mapped to this AP join profile." ::= { cLApProfileEntry 68 } + cLApProfileExtModuleEnable OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-write @@ -7508,7 +8086,7 @@ cLApProfileExtModuleEnable OBJECT-TYPE "This object specifies whether extended module is enabled in this AP Profile. A value of 'true' enables extended module. - A value of 'false' disables extended module." + A value of 'false' disables extended module." ::= { cLApProfileEntry 69 } cLApProfileStatsTimer OBJECT-TYPE @@ -7519,7 +8097,7 @@ cLApProfileStatsTimer OBJECT-TYPE DESCRIPTION "This object specifies the duration of the stats timer value in seconds." - DEFVAL { 180 } + DEFVAL { 180 } ::= { cLApProfileEntry 70 } cLApProfilePoePreStandardSwitchFlag OBJECT-TYPE @@ -7530,11 +8108,11 @@ cLApProfilePoePreStandardSwitchFlag OBJECT-TYPE "This object specifies whether the Pre-standard switch state as PoE option. A value of 'true' enables Pre-standard switch. - A value of 'false' disables Pre-standard switch." + A value of 'false' disables Pre-standard switch." ::= { cLApProfileEntry 71 } cLApProfilePoePowerInjectorSelection OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { unknown(1), installed(2), override(3) @@ -7548,7 +8126,7 @@ cLApProfilePoePowerInjectorSelection OBJECT-TYPE A value of '2' represents the state of PoE injector is installed. A value of '3' represents the state of PoE injector is - override." + override." ::= { cLApProfileEntry 72 } cLApProfilePoeInjectorSwitchMac OBJECT-TYPE @@ -7557,7 +8135,7 @@ cLApProfilePoeInjectorSwitchMac OBJECT-TYPE STATUS current DESCRIPTION "This object represents the MAC address of the - switch port that has a Power injector." + switch port that has a Power injector." ::= { cLApProfileEntry 73 } cLApProfileHaloBleBeaconAdvertisedPwr OBJECT-TYPE @@ -7568,7 +8146,7 @@ cLApProfileHaloBleBeaconAdvertisedPwr OBJECT-TYPE DESCRIPTION "This object specifies the Power for HALO BLE beacon advertisement." - DEFVAL { 59 } + DEFVAL { 59 } ::= { cLApProfileEntry 74 } cLApProfileTftpDownGradeAddressType OBJECT-TYPE @@ -7577,7 +8155,7 @@ cLApProfileTftpDownGradeAddressType OBJECT-TYPE STATUS current DESCRIPTION "This object represents the TFTP servers - address type in use." + address type in use." ::= { cLApProfileEntry 75 } cLApProfileTftpDownGradeAddress OBJECT-TYPE @@ -7586,7 +8164,7 @@ cLApProfileTftpDownGradeAddress OBJECT-TYPE STATUS current DESCRIPTION "This object represents the TFTP servers - IP address." + IP address." ::= { cLApProfileEntry 76 } cLApProfileTftpDownGradeFileName OBJECT-TYPE @@ -7595,11 +8173,11 @@ cLApProfileTftpDownGradeFileName OBJECT-TYPE STATUS current DESCRIPTION "This object represents the AP image downgrade - file name on the TFTP server." + file name on the TFTP server." ::= { cLApProfileEntry 77 } cLApProfileCoreDumpType OBJECT-TYPE - SYNTAX INTEGER { + SYNTAX INTEGER { uncompress(1), compress(2), disable(3) @@ -7611,7 +8189,7 @@ cLApProfileCoreDumpType OBJECT-TYPE whether it is in compress or uncompress. A value of '1' represents uncompressed form of core dump file. A value of '2' represents compressed form of core dump file. - A value of '3' disables the coredump." + A value of '3' disables the coredump." ::= { cLApProfileEntry 78 } cLApProfileCoreDumpTftpAddressType OBJECT-TYPE @@ -7620,7 +8198,7 @@ cLApProfileCoreDumpTftpAddressType OBJECT-TYPE STATUS current DESCRIPTION "This object represents the TFTP server address type used - for AP core dump transfer." + for AP core dump transfer." ::= { cLApProfileEntry 79 } cLApProfileCoreDumpTftpAddress OBJECT-TYPE @@ -7629,7 +8207,7 @@ cLApProfileCoreDumpTftpAddress OBJECT-TYPE STATUS current DESCRIPTION "This object represents the TFTP server address used for AP - core dump transfer." + core dump transfer." ::= { cLApProfileEntry 80 } cLApProfileCoreDumpCoreFileName OBJECT-TYPE @@ -7638,7 +8216,7 @@ cLApProfileCoreDumpCoreFileName OBJECT-TYPE STATUS current DESCRIPTION "This object represents core dump file name - on the TFTP server." + on the TFTP server." ::= { cLApProfileEntry 81 } cLApProfileBackupFallbackEnabled OBJECT-TYPE @@ -7646,19 +8224,404 @@ cLApProfileBackupFallbackEnabled OBJECT-TYPE MAX-ACCESS read-write STATUS current DESCRIPTION - "This object represents fallback status of APs asscoaited + "This object represents fallback status of APs asscoaited to an AP Profile. A value of 'true' represents AP fallback enabled. - A value of 'false' represents AP fallback disabled." + A value of 'false' represents AP fallback disabled." ::= { cLApProfileEntry 82 } - + +cLApProfileClientRssiStatsEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object represents the status of Client RSSI + statistics from Access Point. + A value of 'true' represents Client RSSI statistics reporting from + AP is enabled. + A value of 'false' represents Client RSSI statistics reporting from + AP is disabled." + DEFVAL { true } + ::= { cLApProfileEntry 83 } + +cLApProfileClientRssiStatsReportInterval OBJECT-TYPE + SYNTAX Unsigned32 (30..300) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object represents Client RSSI statistics reporting interval + value in seconds." + DEFVAL { 30 } + ::= { cLApProfileEntry 84 } + +cLApProfileGasRateLimitEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object represents the GAS limit status of APs associated + to an AP Profile. + A value of 'true' represents AP GAS limit enabled. + A value of 'false' represents AP GAS disabled." + ::= { cLApProfileEntry 85 } + +cLApProfileGasRateLimitNumReqPerInterval OBJECT-TYPE + SYNTAX INTEGER (1..100) + UNITS "packets" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the maximum number of GAS messages + per interval." + ::= { cLApProfileEntry 86 } + +cLApProfileGasRateLimitIntervalMsec OBJECT-TYPE + SYNTAX INTEGER (100..10000) + UNITS "milliseconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the interval for GAS message limit." + ::= { cLApProfileEntry 87 } + +cLApProfileQoSMapApTrustsUpstreamDSCP OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies whether the APs associated + with an AP Profile use the upstream/received DSCP + for outer CAPWAP tunnel QoS marking instead of + 802.11 User Priority. + A value of 'true' represents using the upstream DSCP. + A value of 'false' represents not using the upstream DSCP." + ::= { cLApProfileEntry 88 } + +cLApProfileUdpliteState OBJECT-TYPE + SYNTAX INTEGER { + unconfig(1), + udpliteenabled(2), + udplitedisabled(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the capwap tunnel ipv6 UDP-Lite checksum type + for all APs associated to this particular AP Profile. + unconfig - capwap tunnel is not established. + udplite_enabled - capwap tunnel established with ipv6 udplite + checksum enabled for data port. + udplite_disabled - capwap tunnel established with ipv6 checksum." + ::= { cLApProfileEntry 89 } + +cLApProfileMethodListName OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the method list used for the AP + accounting" + ::= { cLApProfileEntry 90 } + +cLApProfileWindowSize OBJECT-TYPE + SYNTAX INTEGER (1..50) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the capwap window size for + capwap multiwindow" + ::= { cLApProfileEntry 91 } + +cLApProfileCredentialGlobalSecretType OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + aes(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the secret password type corresponding to + the secret password type represented by cLApProfileCredentialGlobalSecret + object." + + ::= { cLApProfileEntry 92 } + + +cLApProfileCredentialGlobalPasswordType OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + aes(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the secret password type corresponding to + the secret password type represented by cLApProfileCredentialGlobalSecret + object." + + ::= { cLApProfileEntry 93 } + +cLApProfile802dot1xSupplicantPasswordType OBJECT-TYPE + SYNTAX INTEGER { + clear(0), + aes(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the dot1xSupplicant password type corresponding to + the dot1xSupplicantPassword represented by + cLApProfile802dot1xSupplicantPassword object." + + ::= { cLApProfileEntry 94 } + +cLApProfileBssidEnableStats OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies whether the BSSID stats feature + is enabled or disabled per ap config profile + - A value of 'true' represents the BSSID stats as enabled. + - A Value of 'false' represents the BSSID stats as disabled." + + ::= { cLApProfileEntry 95 } + +cLApProfileBssidStatsFrequency OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the BSSID stats frequency set on the AP for + sending the stats in the current AP profile" + + ::= { cLApProfileEntry 96 } + +cLApProfilePersistentSsidBroadcastEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies whether persistent SSID broadcast + is enabled or disabled per ap config profile + - A value of 'true' represents persistent SSID broadcast is enabled. + - A Value of 'false' represents persistent SSID broadcast is disabled." + + ::= { cLApProfileEntry 97 } + + +cLApProfileDhcpFallback OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies whether the AP fallback to DHCP + is enabled or disabled per ap config profile + - A value of 'true' represents that AP moves to DHCP if it fails to join controller via static IP. + - A Value of 'false' represents that AP will not to DHCP if it fails to join controller via static IP." + + ::= { cLApProfileEntry 98 } + +cLApProfileOeapRogueDetectionEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "This object specifies whether Rogue Detection + is enabled for OEAP. + A value of 'true' indicates rogue detection is enabled. + A value of 'false' indicates rogue detection is disabled." + DEFVAL { false } + + ::= { cLApProfileEntry 99 } + + +cLApProfileOeapEncryptionEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "This object specifies whether encyrption between + controller and OEAP is enabled or not in a profile. + + A value of 'true' enables encryption between + controller and AP. + + A value of 'false' disables encryption between + controller and AP." + + DEFVAL { true } + ::= { cLApProfileEntry 100 } + + +cLApProfileOeapLocalAccessEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "This object specifies Personal SSID + broadcast + + A value of 'true' enables local access of + AP Webui + + A value of 'false' disables local access of + AP Webui." + + DEFVAL { true } + ::= { cLApProfileEntry 101 } + + +cLApProfileOeapProvSsidEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "This object specifies Provisional SSID + broadcast + + A value of 'true' enables broadcast of + Provisional SSID + + A value of 'false' disables broadcast of + Provisional SSID." + + DEFVAL { false } + ::= { cLApProfileEntry 102 } + +cLApProfileCountryCode OBJECT-TYPE + SYNTAX INTEGER { + ae(1), + al(2), + ar(3), + at(4), + au(5), + ba(6), + bb(7), + bd(8), + be(9), + bg(10), + bh(11), + bm(12), + bn(13), + bo(14), + br(15), + belarus(16), + ca(17), + ch(18), + cl(19), + cm(20), + cn(21), + co(22), + cr(23), + cu(24), + cy(25), + cz(26), + de(27), + dk(28), + do(29), + dz(30), + ec(31), + ee(32), + eg(33), + el(34), + es(35), + fi(36), + fj(37), + fr(38), + gb(39), + gh(40), + gi(41), + gr(42), + hk(43), + hr(44), + hu(45), + id(46), + ie(47), + il(48), + in(49), + io(50), + iq(51), + is(52), + it(53), + j2(54), + j4(55), + jm(56), + jo(57), + ke(58), + kn(59), + kw(60), + kz(61), + lb(62), + li(63), + lk(64), + lt(65), + lu(66), + lv(67), + ly(68), + ma(69), + mc(70), + me(71), + mk(72), + mn(73), + mo(74), + mt(75), + mx(76), + my(77), + ng(78), + nl(79), + no(80), + nz(81), + om(82), + pa(83), + pe(84), + ph(85), + pk(86), + pl(87), + pr(88), + pt(89), + py(90), + qa(91), + ro(92), + rs(93), + ru(94), + sa(95), + se(96), + sg(97), + si(98), + sk(99), + th(100), + ti(101), + tn(102), + tr(103), + tw(104), + ua(105), + us(106), + uy(107), + ve(108), + vn(109), + za(110), + unconfigured(111) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the country code for all APs + associated to this particular AP Profile." + ::= { cLApProfileEntry 103 } -- ********************************************************************* -- * Halo BLE Configuration -- ********************************************************************* cLApProfileHaloBleBeaconTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLApProfileHaloBleBeaconEntry + SYNTAX SEQUENCE OF CLApProfileHaloBleBeaconEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION @@ -7673,7 +8636,7 @@ cLApProfileHaloBleBeaconEntry OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "This entry contains an instance of HALO BLE beacon + "This entry contains an instance of HALO BLE beacon configuration for a specific AP profile. It lists the HALO BLE beacon ID, UUID, transmission power, and status per beacon for HALO enabled APs of a particular AP profile that have joined the @@ -7681,14 +8644,15 @@ cLApProfileHaloBleBeaconEntry OBJECT-TYPE INDEX { cLApProfileName, cLApProfileHaloBleBeaconId - } + } ::= { cLApProfileHaloBleBeaconTable 1 } CLApProfileHaloBleBeaconEntry ::= SEQUENCE { - cLApProfileHaloBleBeaconId Unsigned32, - cLApProfileHaloBleBeaconUuid SnmpAdminString, - cLApProfileHaloBleBeaconTxPower Unsigned32, - cLApProfileHaloBleBeaconEnabled TruthValue + cLApProfileHaloBleBeaconId Unsigned32, + cLApProfileHaloBleBeaconUuid SnmpAdminString, + cLApProfileHaloBleBeaconTxPower Unsigned32, + cLApProfileHaloBleBeaconEnabled TruthValue, + cLApProfileHaloBleBeaconRowStatus RowStatus } cLApProfileHaloBleBeaconId OBJECT-TYPE @@ -7697,7 +8661,7 @@ cLApProfileHaloBleBeaconId OBJECT-TYPE STATUS current DESCRIPTION "This object represents HALO BLE beacon ID for which BLE - configuration to be applied." + configuration to be applied." ::= { cLApProfileHaloBleBeaconEntry 1 } cLApProfileHaloBleBeaconUuid OBJECT-TYPE @@ -7706,7 +8670,7 @@ cLApProfileHaloBleBeaconUuid OBJECT-TYPE STATUS current DESCRIPTION "This object represents HALO BLE beacon UUID (universally - unique identifier) which is a 128-bit value." + unique identifier) which is a 128-bit value." ::= { cLApProfileHaloBleBeaconEntry 2 } cLApProfileHaloBleBeaconTxPower OBJECT-TYPE @@ -7717,7 +8681,7 @@ cLApProfileHaloBleBeaconTxPower OBJECT-TYPE DESCRIPTION "This object represents HALO BLE beacon transmission power. The transmission power is based on the size of the required - proximity zone." + proximity zone." ::= { cLApProfileHaloBleBeaconEntry 3 } cLApProfileHaloBleBeaconEnabled OBJECT-TYPE @@ -7727,16 +8691,175 @@ cLApProfileHaloBleBeaconEnabled OBJECT-TYPE DESCRIPTION "This object specifies the status of HALO BLE beacon. true(1) - enable the HALO BLE beacon, - false(2) - disable the HALO BLE beacon." + false(2) - disable the HALO BLE beacon." ::= { cLApProfileHaloBleBeaconEntry 4 } +cLApProfileHaloBleBeaconRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the row to be added or + deleted in this table." + ::= { cLApProfileHaloBleBeaconEntry 5 } + +-- ********************************************************************* +-- * Hotspot 2.0 QoS Map Configuration +-- ********************************************************************* + +cLApProfileQosMapRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF CLApProfileQosMapRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents an instance of QoS Map configuration per + AP profile. It lists the QoS Map DSCP-to-User Priority ranges + which are common for APs that have joined the controller under + the same AP profile." + ::= { ciscoLwappApProfile 3 } + +cLApProfileQosMapRangeEntry OBJECT-TYPE + SYNTAX CLApProfileQosMapRangeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This entry contains an instance of QoS Map configuration for + a specific AP profile. It lists the QoS Map DSCP lower range, + DSCP upper range, 802.11 User Priority and default DSCP + for upstream User Priority for APs of a particular AP profile + that have joined the controller" + INDEX { + cLApProfileName, + cLApProfileQosMapRangeUP + } + ::= { cLApProfileQosMapRangeTable 1 } + +CLApProfileQosMapRangeEntry ::= SEQUENCE { + cLApProfileQosMapRangeUP INTEGER, + cLApProfileQosMapRangeDSCPLower INTEGER, + cLApProfileQosMapRangeDSCPUpper INTEGER, + cLApProfileQosMapRangeUPToDSCP INTEGER, + cLApProfileQosMapRangeRowStatus RowStatus +} + +cLApProfileQosMapRangeUP OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object represents the 802.11 User Priority + for which the DSCP-to-User Priority range + configuration is applied." + ::= { cLApProfileQosMapRangeEntry 1 } + +cLApProfileQosMapRangeDSCPLower OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the DSCP lower range + for which the DSCP-to-User Priority range configuration + is applied on the AP using an AP profile." + ::= { cLApProfileQosMapRangeEntry 2 } + +cLApProfileQosMapRangeDSCPUpper OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the DSCP upper range + for which the DSCP-to-User Priority range configuration + is applied on the AP using an AP profile." + ::= { cLApProfileQosMapRangeEntry 3 } + +cLApProfileQosMapRangeUPToDSCP OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the DSCP value which should + be used for the upstream 802.11 User Priority + on the AP using an AP profile." + ::= { cLApProfileQosMapRangeEntry 4 } + +cLApProfileQosMapRangeRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the row to be added or + deleted in this table." + ::= { cLApProfileQosMapRangeEntry 5 } + + +cLApProfileQosMapExceptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF CLApProfileQosMapExceptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents an instance of QoS Map configuration per + AP profile. It lists the QoS Map DSCP-to-User Priority + exceptions which are common for APs that have joined the + controller under the same AP profile." + ::= { ciscoLwappApProfile 4 } + +cLApProfileQosMapExceptionEntry OBJECT-TYPE + SYNTAX CLApProfileQosMapExceptionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents an instance of QoS Map configuration per + AP profile. It lists the QoS Map DSCP-to-User Priority + exceptions which are common for APs that have joined the + controller under the same AP profile." + INDEX { + cLApProfileName, + cLApProfileQosMapExceptionDSCP + } + ::= { cLApProfileQosMapExceptionTable 1 } + +CLApProfileQosMapExceptionEntry ::= SEQUENCE { + cLApProfileQosMapExceptionDSCP INTEGER, + cLApProfileQosMapExceptionUP INTEGER, + cLApProfileQosMapExceptionRowStatus RowStatus +} + +cLApProfileQosMapExceptionDSCP OBJECT-TYPE + SYNTAX INTEGER (0..63) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object represents the DSCP value for the DSCP to 802.11 + User Priority mapping exception for the APs that joined + the controller under the same AP profile." + ::= { cLApProfileQosMapExceptionEntry 1 } + +cLApProfileQosMapExceptionUP OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the 802.11 User Priority value for the + DSCP to 802.11 User Priority mapping exception for the APs that + joined the controller under the same AP profile." + ::= { cLApProfileQosMapExceptionEntry 2 } + +cLApProfileQosMapExceptionRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the row to be added or + deleted in this table." + ::= { cLApProfileQosMapExceptionEntry 3 } + -- ********************************************************************* -- * AP Packet Capture Profile Configuration -- ********************************************************************* cLApPacketCaptureProfileTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLApPacketCaptureProfileEntry + SYNTAX SEQUENCE OF CLApPacketCaptureProfileEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION @@ -7754,7 +8877,7 @@ cLApPacketCaptureProfileEntry OBJECT-TYPE DESCRIPTION "Each entry in this table provides information about the packet capture profile configured on the controller." - INDEX { cLApPacketCaptureProfileName } + INDEX { cLApPacketCaptureProfileName } ::= { cLApPacketCaptureProfileTable 1 } CLApPacketCaptureProfileEntry ::= SEQUENCE { @@ -7791,7 +8914,7 @@ cLApPacketCaptureProfileName OBJECT-TYPE "This object represents the profile name for ap packet capture profile. The parameters of packet capture profile are used while capturing packets - on the Access Point for the specified wireless client." + on the Access Point for the specified wireless client." ::= { cLApPacketCaptureProfileEntry 1 } cLApPacketCaptureProfileRowStatus OBJECT-TYPE @@ -7799,7 +8922,7 @@ cLApPacketCaptureProfileRowStatus OBJECT-TYPE MAX-ACCESS read-create STATUS current DESCRIPTION - "Used to add or delete an entry in this table." + "Used to add or delete an entry in this table." ::= { cLApPacketCaptureProfileEntry 2 } cLApPacketCaptureProfileBufferSize OBJECT-TYPE @@ -7811,7 +8934,7 @@ cLApPacketCaptureProfileBufferSize OBJECT-TYPE "This object specifies the size of the buffer Access Point should use to copy the captured packets for client and dump it to the FTP server." - DEFVAL { 2048 } + DEFVAL { 2048 } ::= { cLApPacketCaptureProfileEntry 3 } cLApPacketCaptureProfileDuration OBJECT-TYPE @@ -7822,7 +8945,7 @@ cLApPacketCaptureProfileDuration OBJECT-TYPE DESCRIPTION "This object specifies the duration for which the Access Point should capture packets for specified client." - DEFVAL { 10 } + DEFVAL { 10 } ::= { cLApPacketCaptureProfileEntry 4 } cLApPacketCaptureProfileTruncation OBJECT-TYPE @@ -7834,7 +8957,7 @@ cLApPacketCaptureProfileTruncation OBJECT-TYPE "This object specifies the length of the packet after truncation while capturing packets on the Access Point. Default value is 0 which indictaes captured packet should - contain the full payload length." + contain the full payload length." ::= { cLApPacketCaptureProfileEntry 5 } cLApPacketCaptureProfileFtpServerAddressType OBJECT-TYPE @@ -7844,7 +8967,7 @@ cLApPacketCaptureProfileFtpServerAddressType OBJECT-TYPE DESCRIPTION "This object specifies the type of the ftp server IP Address made available through - cLApPacketCaptureProfileEntry." + cLApPacketCaptureProfileEntry." ::= { cLApPacketCaptureProfileEntry 6 } cLApPacketCaptureProfileFtpServerAddress OBJECT-TYPE @@ -7854,7 +8977,7 @@ cLApPacketCaptureProfileFtpServerAddress OBJECT-TYPE DESCRIPTION "This object specifies the IP Address of the FTP server. Access Point will dump the captured packets - to a file in this ftp server." + to a file in this ftp server." ::= { cLApPacketCaptureProfileEntry 7 } cLApPacketCaptureProfileFtpServerPath OBJECT-TYPE @@ -7864,7 +8987,7 @@ cLApPacketCaptureProfileFtpServerPath OBJECT-TYPE DESCRIPTION "This object specifies the directory path in the ftp server for storing the file which contains the - captured packets in the Access Point." + captured packets in the Access Point." ::= { cLApPacketCaptureProfileEntry 8 } cLApPacketCaptureProfileFtpUsername OBJECT-TYPE @@ -7874,7 +8997,7 @@ cLApPacketCaptureProfileFtpUsername OBJECT-TYPE DESCRIPTION "This object specifies the username to login into the ftp server in order to transfer the captured - packets from the Access Point." + packets from the Access Point." ::= { cLApPacketCaptureProfileEntry 9 } cLApPacketCaptureProfileFtpPassword OBJECT-TYPE @@ -7884,7 +9007,7 @@ cLApPacketCaptureProfileFtpPassword OBJECT-TYPE DESCRIPTION "This object specifies the password to login into the ftp server in order to transfer the captured - packets from the Access Point." + packets from the Access Point." ::= { cLApPacketCaptureProfileEntry 10 } cLApPacketCaptureProfileClassifierArp OBJECT-TYPE @@ -7896,7 +9019,7 @@ cLApPacketCaptureProfileClassifierArp OBJECT-TYPE while capturing packets on the Access Point. A value of 'true' indicates ARP packets should be captured. A value of 'false' indicates ARP packets shouldn't be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 11 } cLApPacketCaptureProfileClassifierBroadcast OBJECT-TYPE @@ -7910,7 +9033,7 @@ cLApPacketCaptureProfileClassifierBroadcast OBJECT-TYPE captured. A value of 'false' indicates Broadcast packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 12 } cLApPacketCaptureProfileClassifierControl OBJECT-TYPE @@ -7926,7 +9049,7 @@ cLApPacketCaptureProfileClassifierControl OBJECT-TYPE captured. A value of 'false' indicates 802.11 control packets should not be captured." - DEFVAL { true } + DEFVAL { true } ::= { cLApPacketCaptureProfileEntry 13 } cLApPacketCaptureProfileClassifierData OBJECT-TYPE @@ -7942,7 +9065,7 @@ cLApPacketCaptureProfileClassifierData OBJECT-TYPE captured. A value of 'false' indicates 802.11 Data packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 14 } cLApPacketCaptureProfileClassifierDot1x OBJECT-TYPE @@ -7957,7 +9080,7 @@ cLApPacketCaptureProfileClassifierDot1x OBJECT-TYPE captured. A value of 'false' indicates 802.11 Dot1x packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 15 } cLApPacketCaptureProfileClassifierIapp OBJECT-TYPE @@ -7971,7 +9094,7 @@ cLApPacketCaptureProfileClassifierIapp OBJECT-TYPE A value of 'true' indicates IAPP packets should be captured. A value of 'false' indicates IAPP packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 16 } cLApPacketCaptureProfileClassifierIp OBJECT-TYPE @@ -7981,9 +9104,9 @@ cLApPacketCaptureProfileClassifierIp OBJECT-TYPE DESCRIPTION "This object specifies the filters for IP packets, while capturing packets on the Access Point. - A value of 'true' indicates IP packets should be captured. - A value of 'false' indicates IP packets should not be captured." - DEFVAL { false } + A value of 'true' indicates IP packets should be captured. + A value of 'false' indicates IP packets should not be captured." + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 17 } cLApPacketCaptureProfileClassifierManagement OBJECT-TYPE @@ -7997,7 +9120,7 @@ cLApPacketCaptureProfileClassifierManagement OBJECT-TYPE captured. A value of 'false' indicates 802.11 Management packets should not be captured." - DEFVAL { true } + DEFVAL { true } ::= { cLApPacketCaptureProfileEntry 18 } cLApPacketCaptureProfileClassifierMulticast OBJECT-TYPE @@ -8009,9 +9132,9 @@ cLApPacketCaptureProfileClassifierMulticast OBJECT-TYPE packets, while capturing packets on the Access Point. A value of 'true' indicates Multicast packets should be captured. - A value of 'false' indicates Multicast packets should not be - captured." - DEFVAL { false } + A value of 'false' indicates Multicast packets should not be + captured." + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 19 } cLApPacketCaptureProfileClassifierTcp OBJECT-TYPE @@ -8023,7 +9146,7 @@ cLApPacketCaptureProfileClassifierTcp OBJECT-TYPE while capturing packets on the Access Point. Value of 'true' indicates IP packets should be captured. Value of 'false' indicates IP packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 20 } cLApPacketCaptureProfileClassifierUdp OBJECT-TYPE @@ -8035,7 +9158,7 @@ cLApPacketCaptureProfileClassifierUdp OBJECT-TYPE while capturing packets on the Access Point. Value of 'true' indicates IP packets should be captured. Value of 'false' indicates IP packets should not be captured." - DEFVAL { false } + DEFVAL { false } ::= { cLApPacketCaptureProfileEntry 21 } cLApPacketCaptureProfileClassifierTcpPort OBJECT-TYPE @@ -8047,7 +9170,7 @@ cLApPacketCaptureProfileClassifierTcpPort OBJECT-TYPE packets, while capturing packets on the Access Point. Default value is 0 which indicates all TCP packets should be captured." - DEFVAL { 0 } + DEFVAL { 0 } ::= { cLApPacketCaptureProfileEntry 22 } cLApPacketCaptureProfileClassifierUdpPort OBJECT-TYPE @@ -8060,7 +9183,7 @@ cLApPacketCaptureProfileClassifierUdpPort OBJECT-TYPE Profile which is making use of this packet capture profile. Default value is 0 which indicates all UDP packets should be captured." - DEFVAL { 0 } + DEFVAL { 0 } ::= { cLApPacketCaptureProfileEntry 23 } @@ -8069,7 +9192,7 @@ cLApPacketCaptureProfileClassifierUdpPort OBJECT-TYPE -- ********************************************************************* cLApPacketCaptureClientTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLApPacketCaptureClientEntry + SYNTAX SEQUENCE OF CLApPacketCaptureClientEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION @@ -8085,10 +9208,10 @@ cLApPacketCaptureClientEntry OBJECT-TYPE MAX-ACCESS not-accessible STATUS current DESCRIPTION - "Each entry in this table provides information about packet + "Each entry in this table provides information about packet capture session currently going on for a client on 802.11 LWAPP Access Point that has joined the controller." - INDEX { cLApPacketCaptureClientDeviceMac } + INDEX { cLApPacketCaptureClientDeviceMac } ::= { cLApPacketCaptureClientTable 1 } CLApPacketCaptureClientEntry ::= SEQUENCE { @@ -8170,7 +9293,7 @@ cLApPacketCaptureClientRowStatus OBJECT-TYPE entry in this table. When an entry is added, packet capture will be started for the specified device. When an entry is deleted, packet capture will be stopped - for the specified device." + for the specified device." ::= { cLApPacketCaptureClientEntry 6 } @@ -8197,7 +9320,7 @@ cLApPacketCaptureApEntry OBJECT-TYPE DESCRIPTION "Each entry in this table provides information about status of packet capture already in progress on the specific AP." - INDEX { cLApSysMacAddress } + INDEX { cLApSysMacAddress } ::= { cLApPacketCaptureApTable 1 } CLApPacketCaptureApEntry ::= SEQUENCE { @@ -8214,7 +9337,7 @@ cLApPacketCaptureApDeviceMac OBJECT-TYPE "This object specifies the mac address of the device for which packet capture was started on the Access Point. Access Point will check for this mac address - while capturing packets." + while capturing packets." ::= { cLApPacketCaptureApEntry 1 } cLApPacketCaptureApMacAddress OBJECT-TYPE @@ -8224,7 +9347,7 @@ cLApPacketCaptureApMacAddress OBJECT-TYPE DESCRIPTION "This object specifies the base radio mac address of the Access Point on which packet capture was started for - the specific device." + the specific device." ::= { cLApPacketCaptureApEntry 2 } cLApPacketCaptureApStatus OBJECT-TYPE @@ -8236,11 +9359,152 @@ cLApPacketCaptureApStatus OBJECT-TYPE A value of 'true' indicates packet capture has been started for the specified device on the specific Access Point, A value of 'false' indicates packet capture is not started - for the specified device on the specific Access Point." + for the specified device on the specific Access Point." ::= { cLApPacketCaptureApEntry 3 } - +--******************************************************************** +-- * Cisco 11ax Access Point Radio configuration Objects +--******************************************************************** + +cLAp11axRadioConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF CLAp11axRadioConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents the radio configuration + of 11ax Access Points" + ::= { ciscoLwappAp11axRadioConfig 1 } + +cLAp11axRadioConfigEntry OBJECT-TYPE + SYNTAX CLAp11axRadioConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry in cLAp11axRadioConfigTable + corresponds to an 11ax Access Point radio configuration." + INDEX { + cLApSysMacAddress, + cLApDot11IfSlotId + } + ::= { cLAp11axRadioConfigTable 1 } + +CLAp11axRadioConfigEntry ::=SEQUENCE { + cLAp11axDualRadioCapable TruthValue, + cLAp11axRadioFRACapable TruthValue, + cLAp11axDualRadioOperation INTEGER, + cLAp11axDualRadioMode INTEGER, + cLAp11axRadioRoleOperation INTEGER, + cLAp11axRadioRole INTEGER, + cLAp11axObssPdCapable TruthValue, + cLAp11axObssPdSrgCapable TruthValue +} + +cLAp11axDualRadioCapable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether radio is dual radio capable or + not. + A value of 'true' indicates the radio is dual mode capable. + A value of 'false' indicates the radio is not dual mode capable." + ::= { cLAp11axRadioConfigEntry 1 } + +cLAp11axRadioFRACapable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether radio is FRA capable or not. + A value of 'true' indicates the radio is FRA Capable. + A value of 'false' indicates the radio is not FRA capable." + ::= { cLAp11axRadioConfigEntry 2 } + +cLAp11axDualRadioOperation OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + manual(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies dual radio mode operation of + the slot. + auto - Dual radio mode is automatic. + manual - Dual radio mode is configurable manually. + none - Radio is not dual radio mode capable." + ::= { cLAp11axRadioConfigEntry 3 } + +cLAp11axDualRadioMode OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies dual radio mode status of radio + enabled - Dual radio mode is enabled. + disabled- Dual radio mode is disabled. + none - Radio is not dual radio mode capable." + ::= { cLAp11axRadioConfigEntry 4 } + +cLAp11axRadioRoleOperation OBJECT-TYPE + SYNTAX INTEGER { + auto(1), + manual(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the radio role operation + of the slot. + auto - Radio role assignment is automatic. + manual - Radio role assignment is manual. + none - Radio role assignment is neither manual nor automatic." + ::= { cLAp11axRadioConfigEntry 5 } + +cLAp11axRadioRole OBJECT-TYPE + SYNTAX INTEGER { + clientserving(1), + monitor(2), + none(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the role for the slot. + local - The means the slot is capable of serving clients. + monitor - The slot does not serves client, only monitors. + none - The slot is neither client serving nor monitor." + ::= { cLAp11axRadioConfigEntry 6 } + +cLAp11axObssPdCapable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether the radio is 802.11ax OBSS PD capable + or not. + A value of 'true' indicates the radio is OBSS PD capable. + A value of 'false' indicates the radio is not OBSS PD capable." + ::= { cLAp11axRadioConfigEntry 7 } + +cLAp11axObssPdSrgCapable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents whether the radio is 802.11ax SRG OBSS PD capable + or not. + A value of 'true' indicates the radio is SRG OBSS PD capable. + A value of 'false' indicates the radio is not SRG OBSS PD capable." + ::= { cLAp11axRadioConfigEntry 8 } + -- ******************************************************************** -- * Notification Objects -- ******************************************************************** @@ -8663,6 +9927,34 @@ cLApDot11XorRadioBandChangeReason OBJECT-TYPE radio band change of XOR radio." ::= { ciscoLwappApMIBNotifObjects 37 } +cLApBrokenAntApName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..32)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object represents the AP name of + the trap with broken antenna info." + ::= { ciscoLwappApMIBNotifObjects 38 } + +cLApBrokenAntInfo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..32)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object represents the condition of + antenna for a given AP. It denotes if + AP antenna are broken or not; if broken, then which + particular antenna (like ALL/A/B/C/D/AB/BC...) broken + will be mentioned." + ::= { ciscoLwappApMIBNotifObjects 39 } + +cLApRogueDot11RadioBand OBJECT-TYPE + SYNTAX CLDot11Band + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This object represents the radio band of the Rouge AP." + ::= { ciscoLwappApMIBNotifObjects 40 } -- ******************************************************************** -- * Notifications -- ******************************************************************** @@ -8737,7 +10029,8 @@ ciscoLwappApRogueApDetected NOTIFICATION-TYPE cLApDot11IfType, cLApDot11RadioChannelNumber, cLApRogueApSsid, - cLApRogueType + cLApRogueType, + cLApRogueDot11RadioBand } STATUS current DESCRIPTION @@ -8754,7 +10047,8 @@ ciscoLwappApRogueApCleared NOTIFICATION-TYPE cLApDot11IfType, cLApDot11RadioChannelNumber, cLApRogueApSsid, - cLApRogueType + cLApRogueType, + cLApRogueDot11RadioBand } STATUS current DESCRIPTION @@ -8951,7 +10245,8 @@ ciscoLwappApRogueDetected NOTIFICATION-TYPE cLApSeverityScore, cLApRuleName, cLApRogueClassifiedApMacAddress, - cLApRogueClassifiedRSSI + cLApRogueClassifiedRSSI, + cLApRogueDot11RadioBand } STATUS current DESCRIPTION @@ -9109,6 +10404,154 @@ ciscoLwappRadioBandChangeNotify NOTIFICATION-TYPE "This notification is generated whenever XOR radio of AP has changed its Band" ::= { ciscoLwappApMIBNotifs 31 } + +ciscoLwappBrokenAntennaDetails NOTIFICATION-TYPE + OBJECTS { + cLApBrokenAntApName, + cLApBrokenAntInfo + } + STATUS current + DESCRIPTION + "This notification is generated whenever this AP sends the + antenna details, if any got broken or not" + ::= { ciscoLwappApMIBNotifs 33 } + +ciscoLwappApRadioStuck NOTIFICATION-TYPE + OBJECTS { + cLApSysMacAddress, + cLApName, + bsnStationAPIfSlotId + } + STATUS current + DESCRIPTION + "This notification generates when an AP detects that its + radio is stuck" + ::= { ciscoLwappApMIBNotifs 34 } + +--********************************************************************************** +-- cLAPNtpInfoTable - NTP status for AP +--********************************************************************************** + +cLAPNtpInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF CLAPNtpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table represents collection of + NTP-Server information received from AP." + + ::= { ciscoLwappApNtpInfo 1 } + +cLAPNtpInfoEntry OBJECT-TYPE + SYNTAX CLAPNtpInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry in cLAPNtpInfoTable corresponds + NTP-server information for a particular AP." + + INDEX { cLApSysMacAddress } + ::= { cLAPNtpInfoTable 1 } + +CLAPNtpInfoEntry ::= SEQUENCE { + cLAPNtpInfoState TruthValue, + cLApNtpInfoStatus CLApNtpStatus, + cLAPNtpInfoStratum Unsigned32, + cLAPNtpInfoLastSync Unsigned32, + cLAPNtpInfoOffset Integer32, + cLAPNtpInfoIPAddressType InetAddressType, + cLAPNtpInfoIPAddress InetAddress + } + +cLAPNtpInfoState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies whether + NTP service is enabled or disabled at AP. + A value 'true' means NTP server is running at AP. + A value 'false' means NTP server is not running at AP" + ::= { cLAPNtpInfoEntry 1 } + +cLApNtpInfoStatus OBJECT-TYPE + SYNTAX CLApNtpStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the NTP server + status for AP" + ::= { cLAPNtpInfoEntry 2 } + +cLAPNtpInfoStratum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies NTP server stratum + for AP. + The object value is only applicable when + cLAPNtpInfoState is 'true' and cLApNtpInfoStatus + is other than none." + DEFVAL { 0 } + ::= { cLAPNtpInfoEntry 3 } + +cLAPNtpInfoLastSync OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies AP last synced time with + NTP server in seconds. + The object value is only applicable when cLAPNtpInfoState + is 'true' and cLApNtpInfoStatus is other than none." + DEFVAL { 0 } + ::= { cLAPNtpInfoEntry 4 } + +cLAPNtpInfoOffset OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies NTP server offset + in micro-seconds for AP. + The object value is only applicable when + cLAPNtpInfoState is 'true' and cLApNtpInfoStatus + is other than none." + DEFVAL { 0 } + ::= { cLAPNtpInfoEntry 5 } + +cLAPNtpInfoIPAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the NTP server + IP address type (ipv4 or ipv6) currently configured at AP. + The object value is only applicable when + cLAPNtpInfoState is 'true' and + cLApNtpInfoStatus is other than none." + DEFVAL { 0 } + ::= { cLAPNtpInfoEntry 6 } + +cLAPNtpInfoIPAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the NTP server + IP address currently configured at AP. + The object value is only applicable when + cLAPNtpInfoState is 'true' and + cLApNtpInfoStatus is other than none." + DEFVAL { "" } + ::= { cLAPNtpInfoEntry 7 } + +--********************************************************************************** +-- cLAPNtpInfoTable - NTP status for AP ends here +--********************************************************************************** +-- + -- ******************************************************************** -- * Compliance statements -- ******************************************************************** @@ -9671,7 +11114,7 @@ ciscoLwappApMIBComplianceRev7 MODULE-COMPLIANCE ::= { ciscoLwappApMIBCompliances 8 } ciscoLwappApMIBComplianceRev8 MODULE-COMPLIANCE - STATUS current + STATUS deprecated DESCRIPTION "The compliance statement for the SNMP entities that implement the ciscoLwappApMIB module." @@ -10144,6 +11587,2883 @@ ciscoLwappApMIBComplianceRev8 MODULE-COMPLIANCE "Write access is not required." ::= { ciscoLwappApMIBCompliances 9 } +ciscoLwappApMIBComplianceRev9 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup10, + ciscoLwappApXorRadioGroup, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup1, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 10 } + +ciscoLwappApMIBComplianceRev10 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup12, + ciscoLwappApXorRadioGroup, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup2, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup, + ciscoLwappApProfileQosMapGroup + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 11 } + +ciscoLwappApMIBComplianceRev11 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup11, + ciscoLwappApGroupSup12, + ciscoLwappApXorRadioGroup, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup2, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup, + ciscoLwappApProfileQosMapGroup, + ciscoLwappApGroupSup13, + ciscoLwappAp11axGroup, + ciscoLwappApProfileHaloBleGroupSup1, + ciscoLwappApProfileGroupSup3, + ciscoLwappApLanStatsGroupSup1 + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 12 } + +ciscoLwappApMIBComplianceRev12 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup11, + ciscoLwappApGroupSup12, + ciscoLwappApXorRadioGroup, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup2, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup, + ciscoLwappApProfileQosMapGroup, + ciscoLwappApGroupSup13, + ciscoLwappAp11axGroup, + ciscoLwappApProfileHaloBleGroupSup1, + ciscoLwappApProfileGroupSup3, + ciscoLwappApLanStatsGroupSup1, + ciscoLwappApXorRadioGroupSup1, + ciscoLwappApProfileGroupSup4 + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 13 } + +ciscoLwappApMIBComplianceRev13 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup11, + ciscoLwappApGroupSup14, + ciscoLwappApXorRadioGroup, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup2, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup, + ciscoLwappApProfileQosMapGroup, + ciscoLwappApGroupSup13, + ciscoLwappAp11axGroup, + ciscoLwappApProfileHaloBleGroupSup1, + ciscoLwappApProfileGroupSup3, + ciscoLwappApLanStatsGroupSup1, + ciscoLwappApXorRadioGroupSup1, + ciscoLwappApProfileGroupSup4 + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 14 } + +ciscoLwappApMIBComplianceRev14 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the SNMP entities that + implement the ciscoLwappApMIB module." + MODULE -- this module + MANDATORY-GROUPS { + ciscoLwappApGroup, + ciscoLwappApIfGroup, + ciscoLwappApGroupSup1, + ciscoLwappApGroupSup2, + ciscoLwappApGroupSup3, + ciscoLwappApNotifObjsGroup, + ciscoLwappApNotifsGroupVer1, + ciscoLwappApGroupSup6, + ciscoLwappApGroupSup7, + ciscoLwappApEthernetIfGroup, + ciscoLwappApRadioGroup, + ciscoLwappApGroupSup5, + ciscoLwappSeClientSup, + ciscoLwappDot11IfAntennaGroup, + ciscoLwappRetransmitGroup, + ciscoLwappApNotifsGroupVer2, + ciscoLwappApGroupSup8, + ciscoLwappApGroupSup9, + ciscoLwappApRadioGroupSup1, + ciscoLwappHaloBleGroup, + ciscoLwappApBleBeaconGroup, + ciscoLwappApLanStatsGroup, + ciscoLwappApGroupSup11, + ciscoLwappApGroupSup14, + ciscoLwappApNotifsXorGroup, + ciscoLwappApProfileHaloBleGroup, + ciscoLwappApProfileGroupSup2, + ciscoLwappApPacketCaptureProfileGroup, + ciscoLwappApPacketCaptureClientProfileGroup, + ciscoLwappApProfileQosMapGroup, + ciscoLwappApGroupSup13, + ciscoLwappAp11axGroup, + ciscoLwappApProfileHaloBleGroupSup1, + ciscoLwappApLanStatsGroupSup1, + ciscoLwappApXorRadioGroupSup2, + ciscoLwappApProfileGroupSup4 + } + + OBJECT cLApDot11IfAntennaEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitCount + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalRetransmitTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTelnetEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSshEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPreStdStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorStateEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSelection + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPwrInjectorSwMacAddr + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApMonitorModeOptimization + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDomainName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNameServerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAMSDUEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEncryptionSupported + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApRogueDetectionEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11nChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFirstChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomSecondChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomThirdChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLomFourthChannel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLegacyBeamForming + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCdpOverAirEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApDot11IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialGlobalSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApLinkLatencyReset + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCountryCode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApIfRegulatoryDomainMismatchNotifEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApCrashEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApUnsupportedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ciscoLwappApAssociatedEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryDiscoveryTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerTimeout + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApFastHbTimerEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalFailoverPriority + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalTcpMss + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalDot11IfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobalEthernetIfCdpEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanIfNativeVlanId + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApPrimaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecondaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApTertiaryControllerAddressType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xAuthenticationEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApGlobal802dot1xSupplicantUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideEnabled + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverrideUsername + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp802dot1xSupplicantOverridePassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApNwTxPowerThreshold + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialUserName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialPassword + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialSecret + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApCredentialEnableGlobalCredentials + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApVlanListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLAp11ChannelBandwidth + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApSecureCipher + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApAntennaBandMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMajorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconMinorField + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconUuid + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconInterval + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconApplyGlobal + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT cLApBleBeaconAdvTxPower + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { ciscoLwappApMIBCompliances 15 } + -- ******************************************************************** -- * Units of conformance -- ******************************************************************** @@ -10486,7 +14806,13 @@ ciscoLwappApGroupSup8 OBJECT-GROUP cLApGlobalMaxApsSupported, cLApAuthorizeApMacAuth, cLApAuthorizeApSerialNumAuth, - cLApAuthorizeApMethodList + cLApAuthorizeApMethodList, + cLApGlobalAPAuditReport, + cLApGlobalAPAuditReportInterval, + cLApGlobalAPConnectCount, + cLApAuthorizeApMacMethodList, + cLApAuthorizeApSerialNumMethodList, + clApImageUpgradeHttpsEnable } STATUS current DESCRIPTION @@ -10523,7 +14849,9 @@ ciscoLwappApNotifsGroupVer2 NOTIFICATION-GROUP ciscoLwappApMemoryUsageHigh, ciscoLwappApCpuUsageHigh, ciscoLwappApUpgradeFailureNotify, - ciscoLwappApClientThresholdNotify + ciscoLwappApClientThresholdNotify, + ciscoLwappBrokenAntennaDetails, + ciscoLwappApRadioStuck } STATUS current DESCRIPTION @@ -10535,7 +14863,14 @@ ciscoLwappApNotifsGroupVer2 NOTIFICATION-GROUP ciscoLwappApGroupSup9 OBJECT-GROUP OBJECTS { cLApSecureCipher, - cLApAntennaBandMode + cLApAntennaBandMode, + cLAPNtpInfoState, + cLApNtpInfoStatus, + cLAPNtpInfoStratum, + cLAPNtpInfoLastSync, + cLAPNtpInfoOffset, + cLAPNtpInfoIPAddressType, + cLAPNtpInfoIPAddress } STATUS current DESCRIPTION @@ -10706,6 +15041,8 @@ ciscoLwappApGroupSup10 OBJECT-GROUP cLApUsbOverride, cLApUsbSerialNumber, cLApUsbMaxPower, + cLApLagConfigStatus, + cLApMonitorModeOptStatus, cLApLegacyBeamForming, cLApDot11IfLinkChangeCount, cLApDot11MaxClients, @@ -10856,7 +15193,7 @@ ciscoLwappApGroupSup10 OBJECT-GROUP cLApDot11XorRadioRoleChangeReason, cLApDot11XorRadioBandChangeReason } - STATUS current + STATUS deprecated DESCRIPTION "This supplemental collection of objects represents the information about the general attributes and functional @@ -10874,7 +15211,7 @@ ciscoLwappApXorRadioGroup OBJECT-GROUP cLApFraCoverageOverlapFactor, cLApFraSuggestedMode } - STATUS current + STATUS deprecated DESCRIPTION "This collection of objects represents the information about the Xor Radios of those APs that have @@ -10997,7 +15334,7 @@ ciscoLwappApProfileGroup OBJECT-GROUP cLApProfileCoreDumpCoreFileName, cLApProfileBackupFallbackEnabled } - STATUS current + STATUS deprecated DESCRIPTION "This collection contains the information about the credentials of the 802.11 LWAPP Access Point that have joined the @@ -11054,6 +15391,852 @@ ciscoLwappApPacketCaptureClientProfileGroup OBJECT-GROUP that have joined the Controller" ::= { ciscoLwappApMIBGroups 32 } +ciscoLwappApProfileGroupSup1 OBJECT-GROUP + OBJECTS { + cLApProfileRowStatus, + cLApProfileCredentialGlobalUserName, + cLApProfileCredentialGlobalPassword, + cLApProfileCredentialGlobalSecret, + cLApProfileLinkLatencyEnable, + cLApProfileHaloBleBeaconInterval, + cLApProfileFastHbTimerTimeout, + cLApProfilePrimaryDiscoveryTimeout, + cLApProfileBackupPrimaryControllerAddressType, + cLApProfileBackupPrimaryControllerAddress, + cLApProfileBackupPrimaryControllerName, + cLApProfileBackupSecondaryControllerAddressType, + cLApProfileBackupSecondaryControllerAddress, + cLApProfileBackupSecondaryControllerName, + cLApProfileBackupTertiaryControllerAddressType, + cLApProfileBackupTertiaryControllerAddress, + cLApProfileBackupTertiaryControllerName, + cLApProfileTcpMss, + cLApProfileRetransmitCount, + cLApProfileRetransmitTimeout, + cLApProfileLedState, + cLApProfileMulticastGroupAddressType, + cLApProfileMulticastGroupAddress, + cLApProfileMulticastMode, + cLApProfilePrimedJoinTimeout, + cLApProfilePreferMode, + cLApProfileApLagEnabled, + cLApProfile802dot1xSupplicantUsername, + cLApProfile802dot1xSupplicantPassword, + cLApProfileEncryptionEnable, + cLApProfileTelnetEnable, + cLApProfileSshEnable, + cLApProfileHyperlocationEnable, + cLApProfileHyperlocationDetectionThreshold, + cLApProfileHyperlocationResetThreshold, + cLApProfileHyperlocationTriggerThreshold, + cLApProfileHyperlocationNtpIpAddressType, + cLApProfileHyperlocationNtpIpAddress, + cLApProfileAdjustMss, + cLApProfileDiscoveryTimeout, + cLApProfileHeartBeatTimeout, + cLApProfileCdpEnable, + cLApProfileApPacketCaptureProfile, + cLApProfileRogueReportInterval, + cLApProfileRogueMinimumRssi, + cLApProfileRogueTransientInterval, + cLApProfileRogueContainFlexconnect, + cLApProfileRogueContainAutoRateEnable, + cLApProfileRogueDetectionEnable, + cLApProfileReportInterval24ghz, + cLApProfileReportInterval5ghz, + cLApProfileDot1xApSwitchEapAuth, + cLApProfileDot1xApSwtichLscAuth, + cLApProfileMeshProfileName, + cLApProfileUsbStatus, + cLApProfileExtModuleEnable, + cLApProfileStatsTimer, + cLApProfilePoePreStandardSwitchFlag, + cLApProfilePoePowerInjectorSelection, + cLApProfilePoeInjectorSwitchMac, + cLApProfileHaloBleBeaconAdvertisedPwr, + cLApProfileTftpDownGradeAddressType, + cLApProfileTftpDownGradeAddress, + cLApProfileTftpDownGradeFileName, + cLApProfileCoreDumpType, + cLApProfileCoreDumpTftpAddressType, + cLApProfileCoreDumpTftpAddress, + cLApProfileCoreDumpCoreFileName, + cLApProfileBackupFallbackEnabled + } + STATUS deprecated + DESCRIPTION + "This collection contains the information about the credentials + of the 802.11 LWAPP Access Point that have joined the + Controller" + ::= { ciscoLwappApMIBGroups 33 } + +ciscoLwappApProfileQosMapGroup OBJECT-GROUP + OBJECTS { + cLApProfileQosMapRangeUP, + cLApProfileQosMapRangeDSCPLower, + cLApProfileQosMapRangeDSCPUpper, + cLApProfileQosMapRangeUPToDSCP, + cLApProfileQosMapRangeRowStatus, + cLApProfileQosMapExceptionDSCP, + cLApProfileQosMapExceptionUP, + cLApProfileQosMapExceptionRowStatus + } + STATUS current + DESCRIPTION + "This collection contains Hotspot QoS Map configuration for a + specific AP profile. It lists the QoS Map DSCP to UP + mappings and mappings exceptions for Aps + that have joined the controller." + ::= { ciscoLwappApMIBGroups 34 } + +ciscoLwappApProfileGroupSup2 OBJECT-GROUP + OBJECTS { + cLApProfileRowStatus, + cLApProfileCredentialGlobalUserName, + cLApProfileCredentialGlobalPassword, + cLApProfileCredentialGlobalSecret, + cLApProfileLinkLatencyEnable, + cLApProfileHaloBleBeaconInterval, + cLApProfileFastHbTimerTimeout, + cLApProfilePrimaryDiscoveryTimeout, + cLApProfileBackupPrimaryControllerAddressType, + cLApProfileBackupPrimaryControllerAddress, + cLApProfileBackupPrimaryControllerName, + cLApProfileBackupSecondaryControllerAddressType, + cLApProfileBackupSecondaryControllerAddress, + cLApProfileBackupSecondaryControllerName, + cLApProfileBackupTertiaryControllerAddressType, + cLApProfileBackupTertiaryControllerAddress, + cLApProfileBackupTertiaryControllerName, + cLApProfileTcpMss, + cLApProfileRetransmitCount, + cLApProfileRetransmitTimeout, + cLApProfileLedState, + cLApProfileMulticastGroupAddressType, + cLApProfileMulticastGroupAddress, + cLApProfileMulticastMode, + cLApProfilePrimedJoinTimeout, + cLApProfilePreferMode, + cLApProfileApLagEnabled, + cLApProfile802dot1xSupplicantUsername, + cLApProfile802dot1xSupplicantPassword, + cLApProfileEncryptionEnable, + cLApProfileTelnetEnable, + cLApProfileSshEnable, + cLApProfileHyperlocationEnable, + cLApProfileHyperlocationDetectionThreshold, + cLApProfileHyperlocationResetThreshold, + cLApProfileHyperlocationTriggerThreshold, + cLApProfileHyperlocationNtpIpAddressType, + cLApProfileHyperlocationNtpIpAddress, + cLApProfileAdjustMss, + cLApProfileDiscoveryTimeout, + cLApProfileHeartBeatTimeout, + cLApProfileCdpEnable, + cLApProfileApPacketCaptureProfile, + cLApProfileRogueReportInterval, + cLApProfileRogueMinimumRssi, + cLApProfileRogueTransientInterval, + cLApProfileRogueContainFlexconnect, + cLApProfileRogueContainAutoRateEnable, + cLApProfileRogueDetectionEnable, + cLApProfileReportInterval24ghz, + cLApProfileReportInterval5ghz, + cLApProfileDot1xApSwitchEapAuth, + cLApProfileDot1xApSwtichLscAuth, + cLApProfileMeshProfileName, + cLApProfileUsbStatus, + cLApProfileExtModuleEnable, + cLApProfileStatsTimer, + cLApProfilePoePreStandardSwitchFlag, + cLApProfilePoePowerInjectorSelection, + cLApProfilePoeInjectorSwitchMac, + cLApProfileHaloBleBeaconAdvertisedPwr, + cLApProfileTftpDownGradeAddressType, + cLApProfileTftpDownGradeAddress, + cLApProfileTftpDownGradeFileName, + cLApProfileCoreDumpType, + cLApProfileCoreDumpTftpAddressType, + cLApProfileCoreDumpTftpAddress, + cLApProfileCoreDumpCoreFileName, + cLApProfileBackupFallbackEnabled, + cLApProfileClientRssiStatsEnabled, + cLApProfileClientRssiStatsReportInterval, + cLApProfileGasRateLimitEnable, + cLApProfileGasRateLimitNumReqPerInterval, + cLApProfileGasRateLimitIntervalMsec, + cLApProfileQoSMapApTrustsUpstreamDSCP + } + STATUS current + DESCRIPTION + "This collection contains the information about the credentials + of the 802.11 LWAPP Access Point that have joined the + Controller" + ::= { ciscoLwappApMIBGroups 35 } + +ciscoLwappApGroupSup12 OBJECT-GROUP + OBJECTS { + cLApPowerStatus, + cLApNameServerAddressType, + cLApDataEncryptionStatus, + cLApNsiKey, + cLApPortNumber, + cLApVenueConfigVenueGroup, + cLApVenueConfigVenueType, + cLApVenueConfigVenueName, + cLApVenueConfigLanguage, + cLApLEDState, + cLApRealTimeStatsModeEnabled, + cLApTrunkVlan, + cLApTrunkVlanStatus, + cLApLocation, + cLApSubMode, + cLApAssocCount, + cLApAssocFailResourceCount, + cLApAssociatedClientCount, + cLApMemoryCurrentUsage, + cLApMemoryAverageUsage, + cLApCpuCurrentUsage, + cLApCpuAverageUsage, + cLApUpgradeFromVersion, + cLApUpgradeToVersion, + cLApUpgradeFailureCause, + cLApMaxClientLimitNumberTrap, + cLApMaxClientLimitCause, + cLApMaxClientLimitSet, + cLApFloorLabel, + cLApConnectCount, + cLApReassocSuccCount, + cLApReassocFailCount, + cLApAssocFailCountByRate, + cLApAbnormalOfflineCount, + cLApActiveClientCount, + cLApAssocFailCountForRssiLow, + cLApSysNetId, + cLApAssocFailTimes, + cLApHeartBeatRspAvgTime, + cLApEchoRequestCount, + cLApEchoResponseLossCount, + cLApModuleInserted, + cLApEnableModule, + cLApIsUniversal, + cLApUniversalPrimeStatus, + cLApIsMaster, + cLApBleFWDownloadStatus, + cLApDot11XorDartConnectorStatus, + cLApDot11IfAntennaTxEnable, + cLApDot11IfAntennaRxEnable, + cLApEthernetIfDuplex, + cLApEthernetIfLinkSpeed, + cLApEthernetIfPOEPower, + cLApEthernetIfRxTotalBytes, + cLApEthernetIfTxTotalBytes, + cLApEthernetIfInputCrc, + cLApEthernetIfInputAborts, + cLApEthernetIfInputErrors, + cLApEthernetIfInputFrames, + cLApEthernetIfInputOverrun, + cLApEthernetIfInputDrops, + cLApEthernetIfInputResource, + cLApEthernetIfUnknownProtocol, + cLApEthernetIfRunts, + cLApEthernetIfGiants, + cLApEthernetIfThrottle, + cLApEthernetIfResets, + cLApEthernetIfOutputCollision, + cLApEthernetIfOutputNoBuffer, + cLApEthernetIfOutputResource, + cLApEthernetIfOutputUnderrun, + cLApEthernetIfOutputErrors, + cLApEthernetIfOutputTotalDrops, + cLApDataLinkLatencyStatsCurrent, + cLApDataLinkLatencyStatsMin, + cLApDataLinkLatencyStatsMax, + cLApDataLinkLatencyTimeStamp, + cLApCtsSxpDefaultPassword, + cLApCtsSxpState, + cLApCtsSxpMode, + cLApCtsSxpListenerMinHoldtime, + cLApCtsSxpListenerMaxHoldtime, + cLApCtsSxpReconcilePeriod, + cLApCtsSxpRetryPeriod, + cLApCtsSxpSpeakerHoldTime, + cLApCtsSxpSpeakerKeepAlive, + cLApCtsInlineTagStatus, + cLApCtsSgaclStatus, + cLApCtsOverrideStatus, + cLApModeClear, + cLApSiteTagName, + cLApRfTagName, + cLApPolicyTagName, + cLApTagSource, + cLApUsbModuleName, + cLApUsbModuleState, + cLApUsbModuleProductId, + cLApUsbDescription, + cLApUsbStateInfo, + cLApUsbOverride, + cLApUsbSerialNumber, + cLApUsbMaxPower, + cLApLagConfigStatus, + cLApMonitorModeOptStatus, + cLApLegacyBeamForming, + cLApDot11IfLinkChangeCount, + cLApDot11MaxClients, + cLApPromiscuousModeDwelling, + cLApDot11IfStaKeepingTime, + cLApDot11IfLinkSpeed, + cLApDot11IfMtu, + cLApDot11IfDesc, + cLAPDot11IfMinTxPowerStep, + cLApDot11IfMaxDataRate, + cLApEthernetIfMtu, + cLApEthernetIfType, + cLApEthernetIfLinkChangeCount, + cLApWlanStatsTxPktNum, + cLApWlanStatsTxOctetNum, + cLApWlanStatsRxPktNum, + cLApWlanStatsRxOctetNum, + cLApWlanStatsRetransmitNum, + cLApWlanStatsAssocClientNum, + cLApWlanStatsOnlineUserNum, + cLApHyperlocationAdminState, + cLApHyperlocationUnsetFlag, + cLApOeapDisableLocalAccess, + cLApGlobalLEDState, + cLApRadioInterfaceShutdownEnabled, + cLApEthernetInterfaceDowntime, + cLAPMulticastGroupAddressType, + cLAPMulticastGroupAddress, + cLAPMulticastMode, + cLApGlobalAPLagCapability, + cLApGlobalAPDtlsVersion, + cLApGlobalAPDtlsCipherSuite, + cLApWlanInfoMaxClients, + cLApRadioWlanSsid, + cLApRadioWlanBssid, + cLApNwTxPowerThresholdVer2, + cLApDot11RadioStatsRxErrorFrameCount, + cLApDot11RadioStatsMacMicErrFrameCount, + cLApDot11RadioStatsMacDecryptErrFrameCount, + cLApDot11RadioStatsRxMgmtFrameCount, + cLApDot11RadioStatsRxCtrlFrameCount, + cLApDot11RadioStatsRxDataFrameCount, + cLApDot11RadioStatsTxMgmtFrameCount, + cLApDot11RadioStatsTxCtrlFrameCount, + cLApDot11RadioStatsTxDataFrameCount, + cLApDot11RadioStatsRxDataPacketCount, + cLApDot11RadioStatsTxDataPacketCount, + cLApDot11RadioStatsTxDataPacketCount, + cLApDot11RadioStatsRetryFrameCount, + cLApDot11RadioStatsRetryPacketCount, + cLApDot11RadioRssiHighest, + cLApDot11RadioRssiLowest, + cLApDot11RadioRssiAverage, + cLApCrashFileName, + cLApCrashFileSize, + cLApCrashFileTimeStamp, + cLApLEDFlashStatus, + cLApLEDFlashDuration, + cLApInetAddressType, + cLApInetAddress, + cLApStaticIpv6AddressEnabled, + cLApStaticIpv6InetAddressType, + cLApStaticIpv6InetAddress, + cLApStaticIpv6PrefixLength, + cLApStaticIpv6GatewayInetAddressType, + cLApStaticIpv6GatewayInetAddress, + cLApStaticIpNetmaskType, + cLApStaticIpNetmask, + cLApPreferMode, + cLApPreferModeApplied, + cLApSysMemType, + cLApSysMemSize, + cLApSysFlashSize, + cLApSysCpuType, + cLApSysFlashType, + cLApDot11RadioRateStatsRxPackets, + cLApDot11RadioRateStatsRxBytes, + cLApDot11RadioRateStatsTxPackets, + cLApDot11RadioRateStatsTxBytes, + cLApDot11RadioRateString, + cLApPacketDumpFtpServerAddressType, + cLApPacketDumpFtpServerAddress, + cLApPacketDumpFtpServerPath, + cLApPacketDumpFtpUsername, + cLApPacketDumpFtpPassword, + cLApPacketDumpClassifier, + cLApPacketDumpBufferSize, + cLApPacketDumpCaptureTime, + cLApPacketDumpTruncation, + cLApPacketDumpApName, + cLApPacketDumpDeviceMacAddress, + cLApPacketDumpStartStop, + cLApDot11RadioSsidName, + cLApCmMacAddress, + cLApCmApMacAddress, + cLApCmSwVersion, + cLApEthernetSpeed, + cLApEthernetStatus, + cLApCmStatus, + cLApCmSerialNumber, + cLApCmUsChannelStatus, + cLApCmDsChannelStatus, + cLApCmMaskBit, + cLApEnvTemperatureDegree, + cLApEnvTemperatureState, + cLApEnvOrientation, + cLApEnvPoeOutStatus, + cLApGpsLocationPresent, + cLApGpsLocationValid, + cLApGpsLatitude, + cLApGpsLongitude, + cLApGpsAltitude, + cLApGpsCollectionTime, + cLApRogueApMacAddress, + cLApDot11RadioChannelNumber, + cLApRogueApSsid, + cLApRogueType, + cLApWipsReason, + cLApWipsClear, + cLApIfUpDownFailureType, + cLApIfUpDownCause, + cLApIfUpDownFailureCode, + cLApAlarmSet, + cLApRogueClassType, + cLApRogueDetectedChannel, + cLApRSSI, + cLApSNR, + cLApDot11RadioCurrentChannel, + cLApAdhocRogue, + cLApRogueAPOnWiredNetwork, + cLApRogueMode, + cLApRogueIsClassifiedByRule, + cLApRogueClassifiedApMacAddress, + cLApRogueClassifiedRSSI, + cLAPPreviousMonitorMode, + cLAPCurrentMonitorMode, + cLApSsidKeyConfSsidA, + cLApSsidKeyConfKeyIdxA, + cLApSsidKeyConfSsidB, + cLApSsidKeyConfKeyIdxB, + cLApPreviousChannel, + cLApCurrentChannel, + cLApChannelCustomize, + cLApIfLoadChannelUtilization, + cLAPGroupVlanName, + cLApRuleName, + cLApSeverityScore, + cLApDot11XorRadioRoleChangeReason, + cLApDot11XorRadioBandChangeReason + } + STATUS deprecated + DESCRIPTION + "This supplemental collection of objects represents the + information about the general attributes and functional + parameters of those APs that have joined the + controller." + ::= { ciscoLwappApMIBGroups 36 } + +ciscoLwappApGroupSup13 OBJECT-GROUP + OBJECTS { + cLApDot11IfPhyS80EightyChannelNumber, + cLApDot11IfRptncPresent, + cLApDot11IfDartPresent, + cLApFilterName + } + STATUS current + DESCRIPTION + "This collection of objects represents the information + about radio information of APs that have joined the controller." + ::= { ciscoLwappApMIBGroups 37 } + +ciscoLwappApLanStatsGroupSup1 OBJECT-GROUP + OBJECTS { cLApLanPowerLevelId } + STATUS current + DESCRIPTION + "This collection represents Sardinia AP LAN stats + information that have joined the controller." + ::= { ciscoLwappApMIBGroups 38 } + +ciscoLwappApProfileGroupSup3 OBJECT-GROUP + OBJECTS { + cLApProfileUdpliteState, + cLApProfileMethodListName + } + STATUS deprecated + DESCRIPTION + "This collection contains the information about the credentials + of the 802.11 LWAPP Access Point that have joined the + Controller" + ::= { ciscoLwappApMIBGroups 39 } + +ciscoLwappApProfileHaloBleGroupSup1 OBJECT-GROUP + OBJECTS { cLApProfileHaloBleBeaconRowStatus } + STATUS current + DESCRIPTION + "This collection contains HALO BLE beacon configuration for a + specific AP profile. It lists the HALO BLE beacon ID, UUID, + transmission power, and status per beacon for HALO enabled APs + that have joined the controller." + ::= { ciscoLwappApMIBGroups 40 } + +ciscoLwappAp11axGroup OBJECT-GROUP + OBJECTS { + cLAp11axDualRadioCapable, + cLAp11axRadioFRACapable, + cLAp11axDualRadioOperation, + cLAp11axDualRadioMode, + cLAp11axRadioRoleOperation, + cLAp11axRadioRole, + cLAp11axObssPdCapable, + cLAp11axObssPdSrgCapable + } + STATUS current + DESCRIPTION + "This collection contains HALO BLE beacon configuration for a + specific AP profile. It lists the HALO BLE beacon ID, UUID, + transmission power, and status per beacon for HALO enabled APs + that have joined the controller." + ::= { ciscoLwappApMIBGroups 41 } + +ciscoLwappApXorRadioGroupSup1 OBJECT-GROUP + OBJECTS { + cLApDot11XorRadioMode, + cLApDot11XorRadioBand, + cLApDot11XorRadioRoleAssignment, + ciscoLwappXorRadioRoleChangeEnabled, + cLApDot11IfSensorReachability, + cLApFraCoverageOverlapFactor, + cLApFraSuggestedMode, + cLApDot11IfDualRadioMode, + cLApDot11IfDualRadioCapable, + cLApDot11IfRadioFRACapable, + cLApDot11IfDualRadioOperation, + cLApDot11IfRadioRoleOperation, + cLApDot11IfRadioRole + } + STATUS deprecated + DESCRIPTION + "This collection of objects represents the information + about the Xor Radios of those APs that have + joined the controller." + ::= { ciscoLwappApMIBGroups 42 } + +ciscoLwappApProfileGroupSup4 OBJECT-GROUP + OBJECTS { + cLApProfileUdpliteState, + cLApProfileMethodListName, + cLApProfileWindowSize, + cLApProfileCredentialGlobalSecretType, + cLApProfileCredentialGlobalPasswordType, + cLApProfile802dot1xSupplicantPasswordType, + cLApProfileBssidEnableStats, + cLApProfileBssidStatsFrequency, + cLApProfilePersistentSsidBroadcastEnable, + cLApProfileDhcpFallback, + cLApProfileOeapRogueDetectionEnable, + cLApProfileOeapEncryptionEnable, + cLApProfileOeapLocalAccessEnable, + cLApProfileOeapProvSsidEnable, + cLApProfileCountryCode + } + STATUS current + DESCRIPTION + "This collection contains the information about the credentials + of the 802.11 LWAPP Access Point that have joined the + Controller" + ::= { ciscoLwappApMIBGroups 43 } + +ciscoLwappApGroupSup14 OBJECT-GROUP + OBJECTS { + cLApPowerStatus, + cLApNameServerAddressType, + cLApDataEncryptionStatus, + cLApNsiKey, + cLApPortNumber, + cLApVenueConfigVenueGroup, + cLApVenueConfigVenueType, + cLApVenueConfigVenueName, + cLApVenueConfigLanguage, + cLApLEDState, + cLApRealTimeStatsModeEnabled, + cLApTrunkVlan, + cLApTrunkVlanStatus, + cLApLocation, + cLApSubMode, + cLApAssocCount, + cLApAssocFailResourceCount, + cLApAssociatedClientCount, + cLApMemoryCurrentUsage, + cLApMemoryAverageUsage, + cLApCpuCurrentUsage, + cLApCpuAverageUsage, + cLApUpgradeFromVersion, + cLApUpgradeToVersion, + cLApUpgradeFailureCause, + cLApMaxClientLimitNumberTrap, + cLApMaxClientLimitCause, + cLApMaxClientLimitSet, + cLApFloorLabel, + cLApReassocSuccCount, + cLApReassocFailCount, + cLApAssocFailCountByRate, + cLApAbnormalOfflineCount, + cLApActiveClientCount, + cLApAssocFailCountForRssiLow, + cLApSysNetId, + cLApAssocFailTimes, + cLApHeartBeatRspAvgTime, + cLApEchoRequestCount, + cLApEchoResponseLossCount, + cLApModuleInserted, + cLApEnableModule, + cLApIsUniversal, + cLApUniversalPrimeStatus, + cLApIsMaster, + cLApBleFWDownloadStatus, + cLApDot11XorDartConnectorStatus, + cLApDot11IfAntennaTxEnable, + cLApDot11IfAntennaRxEnable, + cLApEthernetIfDuplex, + cLApEthernetIfLinkSpeed, + cLApEthernetIfPOEPower, + cLApEthernetIfRxTotalBytes, + cLApEthernetIfTxTotalBytes, + cLApEthernetIfInputCrc, + cLApEthernetIfInputAborts, + cLApEthernetIfInputErrors, + cLApEthernetIfInputFrames, + cLApEthernetIfInputOverrun, + cLApEthernetIfInputDrops, + cLApEthernetIfInputResource, + cLApEthernetIfUnknownProtocol, + cLApEthernetIfRunts, + cLApEthernetIfGiants, + cLApEthernetIfThrottle, + cLApEthernetIfResets, + cLApEthernetIfOutputCollision, + cLApEthernetIfOutputNoBuffer, + cLApEthernetIfOutputResource, + cLApEthernetIfOutputUnderrun, + cLApEthernetIfOutputErrors, + cLApEthernetIfOutputTotalDrops, + cLApDataLinkLatencyStatsCurrent, + cLApDataLinkLatencyStatsMin, + cLApDataLinkLatencyStatsMax, + cLApDataLinkLatencyTimeStamp, + cLApCtsSxpDefaultPassword, + cLApCtsSxpState, + cLApCtsSxpMode, + cLApCtsSxpListenerMinHoldtime, + cLApCtsSxpListenerMaxHoldtime, + cLApCtsSxpReconcilePeriod, + cLApCtsSxpRetryPeriod, + cLApCtsSxpSpeakerHoldTime, + cLApCtsSxpSpeakerKeepAlive, + cLApCtsInlineTagStatus, + cLApCtsSgaclStatus, + cLApCtsOverrideStatus, + cLApModeClear, + cLApSiteTagName, + cLApRfTagName, + cLApPolicyTagName, + cLApTagSource, + cLApUsbModuleName, + cLApUsbModuleState, + cLApUsbModuleProductId, + cLApUsbDescription, + cLApUsbStateInfo, + cLApUsbOverride, + cLApUsbSerialNumber, + cLApUsbMaxPower, + cLApLagConfigStatus, + cLApMonitorModeOptStatus, + cLApLegacyBeamForming, + cLApDot11IfLinkChangeCount, + cLApDot11MaxClients, + cLApPromiscuousModeDwelling, + cLApDot11IfStaKeepingTime, + cLApDot11IfLinkSpeed, + cLApDot11IfMtu, + cLApDot11IfDesc, + cLAPDot11IfMinTxPowerStep, + cLApDot11IfMaxDataRate, + cLApEthernetIfMtu, + cLApEthernetIfType, + cLApEthernetIfLinkChangeCount, + cLApWlanStatsTxPktNum, + cLApWlanStatsTxOctetNum, + cLApWlanStatsRxPktNum, + cLApWlanStatsRxOctetNum, + cLApWlanStatsRetransmitNum, + cLApWlanStatsAssocClientNum, + cLApWlanStatsOnlineUserNum, + cLApHyperlocationAdminState, + cLApHyperlocationUnsetFlag, + cLApOeapDisableLocalAccess, + cLApGlobalLEDState, + cLApRadioInterfaceShutdownEnabled, + cLApEthernetInterfaceDowntime, + cLAPMulticastGroupAddressType, + cLAPMulticastGroupAddress, + cLAPMulticastMode, + cLApGlobalAPLagCapability, + cLApGlobalAPDtlsVersion, + cLApGlobalAPDtlsCipherSuite, + cLApWlanInfoMaxClients, + cLApRadioWlanSsid, + cLApRadioWlanBssid, + cLApNwTxPowerThresholdVer2, + cLApDot11RadioStatsRxErrorFrameCount, + cLApDot11RadioStatsMacMicErrFrameCount, + cLApDot11RadioStatsMacDecryptErrFrameCount, + cLApDot11RadioStatsRxMgmtFrameCount, + cLApDot11RadioStatsRxCtrlFrameCount, + cLApDot11RadioStatsRxDataFrameCount, + cLApDot11RadioStatsTxMgmtFrameCount, + cLApDot11RadioStatsTxCtrlFrameCount, + cLApDot11RadioStatsTxDataFrameCount, + cLApDot11RadioStatsRxDataPacketCount, + cLApDot11RadioStatsTxDataPacketCount, + cLApDot11RadioStatsTxDataPacketCount, + cLApDot11RadioStatsRetryFrameCount, + cLApDot11RadioStatsRetryPacketCount, + cLApDot11RadioRssiHighest, + cLApDot11RadioRssiLowest, + cLApDot11RadioRssiAverage, + cLApCrashFileName, + cLApCrashFileSize, + cLApCrashFileTimeStamp, + cLApLEDFlashStatus, + cLApLEDFlashDuration, + cLApInetAddressType, + cLApInetAddress, + cLApStaticIpv6AddressEnabled, + cLApStaticIpv6InetAddressType, + cLApStaticIpv6InetAddress, + cLApStaticIpv6PrefixLength, + cLApStaticIpv6GatewayInetAddressType, + cLApStaticIpv6GatewayInetAddress, + cLApStaticIpNetmaskType, + cLApStaticIpNetmask, + cLApPreferMode, + cLApPreferModeApplied, + cLApSysMemType, + cLApSysMemSize, + cLApSysFlashSize, + cLApSysCpuType, + cLApSysFlashType, + cLApDot11RadioRateStatsRxPackets, + cLApDot11RadioRateStatsRxBytes, + cLApDot11RadioRateStatsTxPackets, + cLApDot11RadioRateStatsTxBytes, + cLApDot11RadioRateString, + cLApPacketDumpFtpServerAddressType, + cLApPacketDumpFtpServerAddress, + cLApPacketDumpFtpServerPath, + cLApPacketDumpFtpUsername, + cLApPacketDumpFtpPassword, + cLApPacketDumpClassifier, + cLApPacketDumpBufferSize, + cLApPacketDumpCaptureTime, + cLApPacketDumpTruncation, + cLApPacketDumpApName, + cLApPacketDumpDeviceMacAddress, + cLApPacketDumpStartStop, + cLApDot11RadioSsidName, + cLApCmMacAddress, + cLApCmApMacAddress, + cLApCmSwVersion, + cLApEthernetSpeed, + cLApEthernetStatus, + cLApCmStatus, + cLApCmSerialNumber, + cLApCmUsChannelStatus, + cLApCmDsChannelStatus, + cLApCmMaskBit, + cLApEnvTemperatureDegree, + cLApEnvTemperatureState, + cLApEnvOrientation, + cLApEnvPoeOutStatus, + cLApGpsLocationPresent, + cLApGpsLocationValid, + cLApGpsLatitude, + cLApGpsLongitude, + cLApGpsAltitude, + cLApGpsCollectionTime, + cLApRogueApMacAddress, + cLApDot11RadioChannelNumber, + cLApRogueApSsid, + cLApRogueType, + cLApRogueDot11RadioBand, + cLApWipsReason, + cLApWipsClear, + cLApIfUpDownFailureType, + cLApIfUpDownCause, + cLApIfUpDownFailureCode, + cLApAlarmSet, + cLApRogueClassType, + cLApRogueDetectedChannel, + cLApRSSI, + cLApSNR, + cLApDot11RadioCurrentChannel, + cLApAdhocRogue, + cLApRogueAPOnWiredNetwork, + cLApRogueMode, + cLApRogueIsClassifiedByRule, + cLApRogueClassifiedApMacAddress, + cLApRogueClassifiedRSSI, + cLAPPreviousMonitorMode, + cLAPCurrentMonitorMode, + cLApSsidKeyConfSsidA, + cLApSsidKeyConfKeyIdxA, + cLApSsidKeyConfSsidB, + cLApSsidKeyConfKeyIdxB, + cLApPreviousChannel, + cLApCurrentChannel, + cLApChannelCustomize, + cLApIfLoadChannelUtilization, + cLAPGroupVlanName, + cLApRuleName, + cLApSeverityScore, + cLApDot11XorRadioRoleChangeReason, + cLApDot11XorRadioBandChangeReason, + cLApBrokenAntApName, + cLApBrokenAntInfo, + cLApIndoorMode, + cLApSlotWlanStatsTxPktNum, + cLApSlotWlanStatsTxOctetNum, + cLApSlotWlanStatsRxPktNum, + cLApSlotWlanStatsRxOctetNum, + cLApSlotWlanStatsRetransmitNum, + cLApSlotWlanStatsAssocClientNum, + cLApSlotWlanStatsOnlineUserNum + } + STATUS current + DESCRIPTION + "This supplemental collection of objects represents the + information about the general attributes and functional + parameters of those APs that have joined the + controller." + ::= { ciscoLwappApMIBGroups 44 } + +ciscoLwappApXorRadioGroupSup2 OBJECT-GROUP + OBJECTS { + cLApDot11XorRadioMode, + cLApDot11XorRadioBand, + cLApDot11XorRadioRoleAssignment, + ciscoLwappXorRadioRoleChangeEnabled, + cLApDot11IfSensorReachability, + cLApFraCoverageOverlapFactor, + cLApFraSuggestedMode + } + STATUS current + DESCRIPTION + "This collection of objects represents the information + about the Xor Radios of those APs that have + joined the controller." + ::= { ciscoLwappApMIBGroups 45 } + END - - diff --git a/mibs/cisco/CISCO-LWAPP-TC-MIB b/mibs/cisco/CISCO-LWAPP-TC-MIB index 881f9c67c2..1250552ad2 100644 --- a/mibs/cisco/CISCO-LWAPP-TC-MIB +++ b/mibs/cisco/CISCO-LWAPP-TC-MIB @@ -2,7 +2,7 @@ -- CISCO-LWAPP-TC-MIB.my: Cisco LWAPP MIBs Textual Conventions -- March 2006, Prasanna Viswakumar -- --- Copyright (c) 2006, 2007, 2010-2011 by Cisco Systems Inc. +-- Copyright (c) 2006-2007, 2010-2011, 2019, 2021-2022, 2024 by Cisco Systems, Inc. -- All rights reserved. -- ******************************************************************* @@ -24,7 +24,7 @@ IMPORTS -- ******************************************************************** ciscoLwappTextualConventions MODULE-IDENTITY - LAST-UPDATED "201906270000Z" + LAST-UPDATED "202211290000Z" ORGANIZATION "Cisco Systems, Inc." CONTACT-INFO "Cisco Systems, @@ -186,9 +186,15 @@ ciscoLwappTextualConventions MODULE-IDENTITY [4] Enhanced Wireless Consortium PHY Specification, v1.27." + REVISION "202211290000Z" + DESCRIPTION + "Added new enum value to CLApIfType." REVISION "201608230000Z" DESCRIPTION - "Added new textual conventions CLApMode" + "Added new enum value 3 to CLDot11Band." + REVISION "201608230000Z" + DESCRIPTION + "Added new textual conventions CLApMode" REVISION "201109130000Z" DESCRIPTION "Added new textual conventions CcxServiceVersion" @@ -237,14 +243,26 @@ CLApIfType ::= TEXTUAL-CONVENTION and 802.11bg. uwb - This value indicates that this is a Ultra - Wideband Interface." - + Wideband Interface. + + rlan - This value indicates that this is a RLAN + interface. + + dot11_6ghz - This value indicates that the radio + interface is following 802.11 6ghz standard. + + dot11_xor_5_6ghz - This value indicates that the + radio interface is operating in XOR mode between + 802.11a and 802.11 6ghz." + SYNTAX INTEGER { dot11bg(1), dot11a(2), uwb(3), dot11abgn(4), - unknown(5) + rlan(5), + dot11-6ghz(6), + dot11-xor-5-6ghz(7) } CLDot11Channel ::= TEXTUAL-CONVENTION @@ -614,10 +632,14 @@ CLDot11Band ::= TEXTUAL-CONVENTION 2.4 GHz band is in use. band5 - This value indicates that the - 5 GHz band is in use." + 5 GHz band is in use. + + maui-6ghz - This value indicates that the + 6 GHz band is in use." SYNTAX INTEGER { band2dot4(1), - band5(2) + band5(2), + maui-6ghz(3) } CLApAssocFailureReason ::= TEXTUAL-CONVENTION @@ -759,36 +781,86 @@ CcxServiceVersion ::= TEXTUAL-CONVENTION } CLApMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention defines the working - mode of the AP. - local(0) - This mode enables the access points - to serve the clients. - monitor(1) - This mode enables the access points - to monitor all of its cycles scanning - the channels and looking for rogues. - remote(2) - This mode indicates that AP is a remote - edge lightweight access point. - rogueDetector(3)- This mode enables the access points - to detect the rogue access points. - sniffer(4) - This mode enables the access points - to sniff packets in a particular channel. - bridge(5) - This mode indicates that a root access point. - is connected - seConnect(6) - This mode enables the access points - to join Cisco spectrum expert and - perform spectrum intelligence." - - SYNTAX INTEGER { + STATUS current + DESCRIPTION + "This textual convention defines the working + mode of the AP. + local(0) - This mode enables the access points + to serve the clients. + monitor(1) - This mode enables the access points + to monitor all of its cycles scanning + the channels and looking for rogues. + remote(2) - This mode indicates that AP is a remote + edge lightweight access point. + rogueDetector(3)- This mode enables the access points + to detect the rogue access points. + sniffer(4) - This mode enables the access points + to sniff packets in a particular channel. + bridge(5) - This mode indicates that a root access point. + is connected + seConnect(6) - This mode enables the access points + to join Cisco spectrum expert and + perform spectrum intelligence. + remoteBridge(7) - This mode indicates that AP is a remote + edge lightweight access point in Bridge + (Flex + Mesh) mode. + remoteHybrid(8) - This mode is currently not used. + sensor(9) - This mode indicates the radio inside + the access point to function as a + dedicated sensor." + SYNTAX INTEGER { local(0), monitor(1), remote(2), rogueDetector(3), sniffer(4), bridge(5), - seConnect(6) - } + seConnect(6), + remoteBridge(7), + remoteHybrid(8), + sensor(9) + } + +Dscp ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An integer that is in the range of the diffserv codepoint + values." + SYNTAX INTEGER (0..63) + +CLApNtpStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention defines the NTP status. + The semantics are as follows: + + notValid - This value indicates NTP status is not valid. + + none - This value indicates NTP status is not received. + + unreachable - This value indicates that NTP server is not + reachable. + + synched - This value indicates NTP server is syched. + + notSynched - This value indicates NTP server is not sycnhed. + + waitSynch - This value indicates NTP server is waiting to be sycnhed. + + authFail - This value indicates NTP server authentication failed. + + notSuitable - This value indicates NTP server is not suitable for AP. + " + SYNTAX INTEGER { + notValid(1), + none(2), + unreachable(3), + synched(4), + notSynched(5), + waitSynch(6), + authFail(7), + notSuitable(8), + unknown(9) + } END - diff --git a/tests/data/iosxe_c9800.json b/tests/data/iosxe_c9800.json new file mode 100644 index 0000000000..022c65bfb3 --- /dev/null +++ b/tests/data/iosxe_c9800.json @@ -0,0 +1,3146 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "mar-wlc-c9800.int.nutriasia.com.ph", + "sysObjectID": ".1.3.6.1.4.1.9.1.2861", + "sysDescr": "Cisco IOS Software [Cupertino], C9800 Software (C9800_IOSXE-K9), Version 17.9.4, RELEASE SOFTWARE (fc5)", + "sysContact": "it.admin@nutriasia.com", + "version": "C9800_IOSXE-K9 17.9.4", + "hardware": "Multi Chassis System", + "features": "Cupertino", + "location": "", + "os": "iosxe", + "type": "network", + "serial": null, + "icon": "cisco.svg" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/0", + "ifName": "Tw0/0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/1", + "ifName": "Tw0/0/1", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/1", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/2", + "ifName": "Tw0/0/2", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/2", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/3", + "ifName": "Tw0/0/3", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/3", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet0/1/0", + "ifName": "Te0/1/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "***TO MAR-COR-SW-1 Ten 2/0/9***", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet0/1/1", + "ifName": "Te0/1/1", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "***TO MAR-COR-SW-1 Ten 1/0/9***", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0", + "ifName": "Gi0", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Vlan1", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan52", + "ifName": "Vl52", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "Vlan52", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel9", + "ifName": "Po9", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "***TO MAR-COR-SW-1***", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 5, + "low_ifIndex": 12, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 6, + "low_ifIndex": 12, + "ifStackStatus": "active" + } + ] + } + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 1, + "entPhysicalDescr": "Cisco C9800 Dual Chassis", + "entPhysicalClass": "stack", + "entPhysicalName": "Multi Chassis System", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevHAC9800DualChassis", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "Cisco C9800-L-F-K9 Chassis", + "entPhysicalClass": "chassis", + "entPhysicalName": "Chassis 1", + "entPhysicalHardwareRev": "01", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "C9800-L-F-K9", + "entPhysicalVendorType": "cevChassisC9800LFK9", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "Power Supply Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Chassis 1 Power Supply Bay 0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevContainerASR1000PowerSupplyBay", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "Cisco Catalyst Wireless Controller 12V DC Generic Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Chassis 1 Power Supply Module 0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "PWR-12V", + "entPhysicalVendorType": "cevPowerSupplyC9800LDC12V", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + }, + { + "entPhysicalIndex": 14, + "entPhysicalDescr": "Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Chassis 1 Power Supply 0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPowerSupplyASR1000PS", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 4, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 24, + "entPhysicalDescr": "Cisco C9800-L-F-K9 Fan Tray", + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan Tray", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "C9800-L-F-K9-FAN", + "entPhysicalVendorType": "cevFanC9800LFK9FanTray", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 35, + "entPhysicalDescr": "Fan", + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 1/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevFanASR1000Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 24, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 36, + "entPhysicalDescr": "Fan", + "entPhysicalClass": "fan", + "entPhysicalName": "Chassis 1 Fan 1/1", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevFanASR1000Fan", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 24, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": "Cisco C9800-L-F-K9 Modular Interface Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module 0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "16.12(3r)", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "C9800-L-F-K9", + "entPhysicalVendorType": "cevModuleC9800LFK9MIP", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + }, + { + "entPhysicalIndex": 1040, + "entPhysicalDescr": "Front Panel bay-0 4 ports 2.5 Gigabitethernet Module", + "entPhysicalClass": "module", + "entPhysicalName": "SPA subslot 0/0", + "entPhysicalHardwareRev": "V01", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "N/A", + "entPhysicalAssetID": "N/A", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILT-IN-4x2_5GE", + "entPhysicalVendorType": "cevModuleASR1000Type.104", + "entPhysicalSerialNum": "N/A", + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "CISCO", + "ifIndex": null + }, + { + "entPhysicalIndex": 1041, + "entPhysicalDescr": "BUILT-IN-4x2_5GE", + "entPhysicalClass": "port", + "entPhysicalName": "TwoGigabitEthernet0/0/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPortTwoGigEthernet", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": 1 + }, + { + "entPhysicalIndex": 1042, + "entPhysicalDescr": "BUILT-IN-4x2_5GE", + "entPhysicalClass": "port", + "entPhysicalName": "TwoGigabitEthernet0/0/1", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPortTwoGigEthernet", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": 2 + }, + { + "entPhysicalIndex": 1043, + "entPhysicalDescr": "BUILT-IN-4x2_5GE", + "entPhysicalClass": "port", + "entPhysicalName": "TwoGigabitEthernet0/0/2", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPortTwoGigEthernet", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": 3 + }, + { + "entPhysicalIndex": 1044, + "entPhysicalDescr": "BUILT-IN-4x2_5GE", + "entPhysicalClass": "port", + "entPhysicalName": "TwoGigabitEthernet0/0/3", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPortTwoGigEthernet", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": 4 + }, + { + "entPhysicalIndex": 1280, + "entPhysicalDescr": "Front Panel bay-1 2 ports Ten/Gigabitethernet Module", + "entPhysicalClass": "module", + "entPhysicalName": "SPA subslot 0/1", + "entPhysicalHardwareRev": "V01", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "N/A", + "entPhysicalAssetID": "N/A", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "BUILT-IN-2x10GE-F", + "entPhysicalVendorType": "cevModuleASR1000Type.106", + "entPhysicalSerialNum": "N/A", + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "CISCO", + "ifIndex": null + }, + { + "entPhysicalIndex": 1331, + "entPhysicalDescr": "subslot 0/1 transceiver container 0", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevContainerSFP", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1332, + "entPhysicalDescr": "10GE CU3M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 0", + "entPhysicalHardwareRev": "V03", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "SFP-H10GB-CU3M", + "entPhysicalVendorType": "cevSFPH10GBCU3M", + "entPhysicalSerialNum": "MPH2624A287", + "entPhysicalContainedIn": 1331, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "CISCO-MOLEX", + "ifIndex": null + }, + { + "entPhysicalIndex": 1333, + "entPhysicalDescr": "BUILT-IN-2x10GE-F", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/1/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPort10GigSFPPlus", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1332, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": 5 + }, + { + "entPhysicalIndex": 1343, + "entPhysicalDescr": "subslot 0/1 transceiver container 1", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 1", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevContainerSFP", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1280, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 1344, + "entPhysicalDescr": "10GE CU3M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 1", + "entPhysicalHardwareRev": "V03", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "SFP-H10GB-CU3M", + "entPhysicalVendorType": "cevSFPH10GBCU3M", + "entPhysicalSerialNum": "MPH2624A285", + "entPhysicalContainedIn": 1343, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "CISCO-MOLEX", + "ifIndex": null + }, + { + "entPhysicalIndex": 1345, + "entPhysicalDescr": "BUILT-IN-2x10GE-F", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/1/1", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPort10GigSFPPlus", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 1344, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": 6 + }, + { + "entPhysicalIndex": 2000, + "entPhysicalDescr": "Cisco C9800-L-F-K9 Route Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module R0", + "entPhysicalHardwareRev": "01", + "entPhysicalFirmwareRev": "16.12(3r)", + "entPhysicalSoftwareRev": "17.09.04", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "C9800-L-F-K9", + "entPhysicalVendorType": "cevModuleC9800LFK9RP", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + }, + { + "entPhysicalIndex": 2001, + "entPhysicalDescr": "Temp: BRDTEMP1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: BRDTEMP1 R0/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevSensorModuleDeviceTemp", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2002, + "entPhysicalDescr": "Temp: BRDTEMP2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: BRDTEMP2 R0/1", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevSensorModuleDeviceTemp", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2003, + "entPhysicalDescr": "Temp: CPU Die", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: CPU Die R0/2", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevSensorModuleDeviceTemp", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2101, + "entPhysicalDescr": "CPU 0 of module R0", + "entPhysicalClass": "cpu", + "entPhysicalName": "cpu R0/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevModuleCpuType", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2102, + "entPhysicalDescr": "USB Port", + "entPhysicalClass": "container", + "entPhysicalName": "usb R0/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevContainerUSB", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 2104, + "entPhysicalDescr": "Network Management Ethernet", + "entPhysicalClass": "port", + "entPhysicalName": "NME R0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevPortGe", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 3000, + "entPhysicalDescr": "Cisco C9800-L-F-K9 Embedded Services Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module F0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "16.12(3r)", + "entPhysicalSoftwareRev": "17.09.04", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "C9800-L-F-K9", + "entPhysicalVendorType": "cevModuleC9800LFK9ESP", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + }, + { + "entPhysicalIndex": 3026, + "entPhysicalDescr": "QFP 0 of module F0", + "entPhysicalClass": "cpu", + "entPhysicalName": "qfp F0/0", + "entPhysicalHardwareRev": "", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "", + "entPhysicalVendorType": "cevModuleCpuType", + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 3000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "Cisco Systems Inc", + "ifIndex": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.0", + "processor_index": "5.0", + "processor_type": "cpm", + "processor_usage": 3, + "processor_descr": "cpu R0/0: Core 0", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.1", + "processor_index": "5.1", + "processor_type": "cpm", + "processor_usage": 3, + "processor_descr": "cpu R0/0: Core 1", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.2", + "processor_index": "5.2", + "processor_type": "cpm", + "processor_usage": 3, + "processor_descr": "cpu R0/0: Core 2", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.3", + "processor_index": "5.3", + "processor_type": "cpm", + "processor_usage": 2, + "processor_descr": "cpu R0/0: Core 3", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.4", + "processor_index": "5.4", + "processor_type": "cpm", + "processor_usage": 1, + "processor_descr": "cpu R0/0: Core 4", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.5", + "processor_index": "5.5", + "processor_type": "cpm", + "processor_usage": 4, + "processor_descr": "cpu R0/0: Core 5", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.6", + "processor_index": "5.6", + "processor_type": "cpm", + "processor_usage": 2, + "processor_descr": "cpu R0/0: Core 6", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.7", + "processor_index": "5.7", + "processor_type": "cpm", + "processor_usage": 100, + "processor_descr": "cpu R0/0: Core 7", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.8", + "processor_index": "5.8", + "processor_type": "cpm", + "processor_usage": 0, + "processor_descr": "cpu R0/0: Core 8", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.9", + "processor_index": "5.9", + "processor_type": "cpm", + "processor_usage": 0, + "processor_descr": "cpu R0/0: Core 9", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 2101, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.10", + "processor_index": "5.10", + "processor_type": "cpm", + "processor_usage": 0, + "processor_descr": "cpu R0/0: Core 10", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 3026, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.9.9.715.1.1.6.1.14.3026.3", + "processor_index": "3026.3", + "processor_type": "qfp", + "processor_usage": 0, + "processor_descr": "qfp F0/0", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + } + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "2000.1", + "entPhysicalIndex": 2000, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module R0 - Processor", + "mempool_perc": 27, + "mempool_perc_oid": null, + "mempool_used": 453666736, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.2000.1", + "mempool_free": 1220346668, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.2000.1", + "mempool_total": 1674013404, + "mempool_total_oid": null, + "mempool_largestfree": 1100603640, + "mempool_lowestfree": 1215240996, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "2000.2", + "entPhysicalIndex": 2000, + "mempool_type": "cemp", + "mempool_class": "system", + "mempool_precision": 1, + "mempool_descr": "Module R0 - Reserve Processor", + "mempool_perc": 0, + "mempool_perc_oid": null, + "mempool_used": 88, + "mempool_used_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.18.2000.2", + "mempool_free": 102316, + "mempool_free_oid": ".1.3.6.1.4.1.9.9.221.1.1.1.1.20.2000.2", + "mempool_total": 102404, + "mempool_total_oid": null, + "mempool_largestfree": 102312, + "mempool_lowestfree": 102316, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + } + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "9.77.103.109.116.45.105.110.116.102", + "vrf_name": "Mgmt-intf", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": "7" + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.4", + "sensor_index": "4", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "Chassis 1 Power Supply Module 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.24", + "sensor_index": "24", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan Tray", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.35", + "sensor_index": "35", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan 1/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "35", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.36", + "sensor_index": "36", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan 1/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.14", + "sensor_index": "14", + "sensor_type": "ciscoEnvMonSupplyState", + "sensor_descr": "Chassis 1 Power Supply 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.4", + "sensor_index": "4", + "sensor_type": "ciscoEnvMonSupplyState", + "sensor_descr": "Chassis 1 Power Supply Module 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2001", + "sensor_index": "2001", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2002", + "sensor_index": "2002", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2003", + "sensor_index": "2003", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2001", + "sensor_index": "2001", + "sensor_type": "cisco", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2002", + "sensor_index": "2002", + "sensor_type": "cisco", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2003", + "sensor_index": "2003", + "sensor_type": "cisco", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 104, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2001", + "sensor_index": "2001", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 57, + "sensor_limit_warn": 54, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2002", + "sensor_index": "2002", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 61, + "sensor_limit_warn": 58, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2003", + "sensor_index": "2003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 99, + "sensor_limit_warn": 94, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2001", + "sensor_index": "2001", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2002", + "sensor_index": "2002", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2003", + "sensor_index": "2003", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 55, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "cisco-flash", + "storage_index": "1.1", + "storage_type": "flash", + "storage_descr": "bootflash(bootflash):", + "storage_size": 26458804224, + "storage_units": 1, + "storage_used": 9448710144, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "MAR-COR-SW-1.int.nutriasia.com.ph", + "remote_port": "TenGigabitEthernet1/0/9", + "remote_platform": "cisco WS-C3850-12XS", + "remote_version": "Cisco IOS Software [Gibraltar], Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 16.12.9, RELEASE SOFTWARE (fc2) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2023 by Cisco Systems, Inc. Compiled Mon 20-Mar-23 03:14", + "ifAlias": "***TO MAR-COR-SW-1 Ten 1/0/9***", + "ifDescr": "TenGigabitEthernet0/1/1", + "ifName": "Te0/1/1" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "MAR-COR-SW-1.int.nutriasia.com.ph", + "remote_port": "TenGigabitEthernet2/0/9", + "remote_platform": "cisco WS-C3850-12XS", + "remote_version": "Cisco IOS Software [Gibraltar], Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 16.12.9, RELEASE SOFTWARE (fc2) Technical Support: http://www.cisco.com/techsupport Copyright (c) 1986-2023 by Cisco Systems, Inc. Compiled Mon 20-Mar-23 03:14", + "ifAlias": "***TO MAR-COR-SW-1 Ten 2/0/9***", + "ifDescr": "TenGigabitEthernet0/1/0", + "ifName": "Te0/1/0" + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 1, + "vlan_domain": 1, + "vlan_name": "default", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 5, + "vlan_domain": 1, + "vlan_name": "ISE_NAI_WIFI", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 52, + "vlan_domain": 1, + "vlan_name": "ISE_NETWORK_MGMT", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 72, + "vlan_domain": 1, + "vlan_name": "MAR_NAI_MOBILE", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 176, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_HR", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 177, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_R&D", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 178, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_SupChain", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 179, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_TQM", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 180, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_ValChain", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 181, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_CPG", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 182, + "vlan_domain": 1, + "vlan_name": "ISE_MAR_Finance", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 183, + "vlan_domain": 1, + "vlan_name": "MAR_SAP_IOT", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 184, + "vlan_domain": 1, + "vlan_name": "ISE_BGC_IT", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 186, + "vlan_domain": 1, + "vlan_name": "ISE_ClinicUsers", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 187, + "vlan_domain": 1, + "vlan_name": "MAR_SAP_USER", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 191, + "vlan_domain": 1, + "vlan_name": "MAR_TimeSync", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 193, + "vlan_domain": 1, + "vlan_name": "MAR_OT_WIRELESS", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 200, + "vlan_domain": 1, + "vlan_name": "ISE_WIFI_GUEST", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 205, + "vlan_domain": 1, + "vlan_name": "ISE_TPE", + "vlan_type": "ethernet", + "vlan_mtu": null + }, + { + "vlan_vlan": 1002, + "vlan_domain": 1, + "vlan_name": "fddi-default", + "vlan_type": "fddi", + "vlan_mtu": null + }, + { + "vlan_vlan": 1003, + "vlan_domain": 1, + "vlan_name": "token-ring-default", + "vlan_type": "tokenRing", + "vlan_mtu": null + }, + { + "vlan_vlan": 1004, + "vlan_domain": 1, + "vlan_name": "fddinet-default", + "vlan_type": "fddiNet", + "vlan_mtu": null + }, + { + "vlan_vlan": 1005, + "vlan_domain": 1, + "vlan_name": "trnet-default", + "vlan_type": "trNet", + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 1, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 1, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 52, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 52, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 52, + "baseport": 0, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "0", + "sensor_type": "ciscowlc", + "sensor_descr": "Connected APs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 55, + "sensor_prev": null, + "sensor_limit": 250, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.9.9.513.1.3.35.0\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: ", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.1\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "2", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 7, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.2\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-IT", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.3\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "4", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NA Guest", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.4\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "5", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: SAP", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 7, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.5\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "6", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: TIME", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 9, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.6\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "7", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: OTN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 12, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.7\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "8", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-TPE", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.8\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "0", + "sensor_type": "ciscowlc", + "sensor_descr": "Clients: Total", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 41, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.1\",\".1.3.6.1.4.1.14179.2.1.1.1.38.2\",\".1.3.6.1.4.1.14179.2.1.1.1.38.3\",\".1.3.6.1.4.1.14179.2.1.1.1.38.4\",\".1.3.6.1.4.1.14179.2.1.1.1.38.5\",\".1.3.6.1.4.1.14179.2.1.1.1.38.6\",\".1.3.6.1.4.1.14179.2.1.1.1.38.7\",\".1.3.6.1.4.1.14179.2.1.1.1.38.8\"]", + "rrd_type": "GAUGE" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "0", + "sensor_type": "ciscowlc", + "sensor_descr": "Connected APs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 55, + "sensor_prev": 55, + "sensor_limit": 250, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.9.9.513.1.3.35.0\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: ", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 5, + "sensor_prev": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.1\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "2", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 7, + "sensor_prev": 7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.2\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-IT", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.3\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "4", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NA Guest", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.4\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "5", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: SAP", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 7, + "sensor_prev": 7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.5\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "6", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: TIME", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 9, + "sensor_prev": 9, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.6\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "7", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: OTN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 12, + "sensor_prev": 12, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.7\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "8", + "sensor_type": "ciscowlc-ssid", + "sensor_descr": "SSID: NAI-TPE", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1, + "sensor_prev": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.8\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "0", + "sensor_type": "ciscowlc", + "sensor_descr": "Clients: Total", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 41, + "sensor_prev": 41, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.14179.2.1.1.1.38.1\",\".1.3.6.1.4.1.14179.2.1.1.1.38.2\",\".1.3.6.1.4.1.14179.2.1.1.1.38.3\",\".1.3.6.1.4.1.14179.2.1.1.1.38.4\",\".1.3.6.1.4.1.14179.2.1.1.1.38.5\",\".1.3.6.1.4.1.14179.2.1.1.1.38.6\",\".1.3.6.1.4.1.14179.2.1.1.1.38.7\",\".1.3.6.1.4.1.14179.2.1.1.1.38.8\"]", + "rrd_type": "GAUGE" + } + ] + } + } +} diff --git a/tests/snmpsim/iosxe_c9800.snmprec b/tests/snmpsim/iosxe_c9800.snmprec new file mode 100644 index 0000000000..4e4a1aa449 --- /dev/null +++ b/tests/snmpsim/iosxe_c9800.snmprec @@ -0,0 +1,107692 @@ +1.3.6.1.2.1.1.1.0|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20433938303020536f667477617265202843393830305f494f5358452d4b39292c2056657273696f6e2031372e392e342c2052454c4541534520534f465457415245202866633529 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.2861 +1.3.6.1.2.1.1.3.0|67|454334763 +1.3.6.1.2.1.1.4.0|4x|69742e61646d696e406e75747269617369612e636f6d +1.3.6.1.2.1.1.5.0|4x|4d41522d574c432d43393830302e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.1.7.0|2|78 +1.3.6.1.2.1.1.8.0|67|0 +1.3.6.1.2.1.2.1.0|2|12 +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.4|2|4 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.6|2|6 +1.3.6.1.2.1.2.2.1.1.7|2|7 +1.3.6.1.2.1.2.2.1.1.8|2|8 +1.3.6.1.2.1.2.2.1.1.9|2|9 +1.3.6.1.2.1.2.2.1.1.10|2|10 +1.3.6.1.2.1.2.2.1.1.11|2|11 +1.3.6.1.2.1.2.2.1.1.12|2|12 +1.3.6.1.2.1.2.2.1.2.1|4x|54776f4769676162697445746865726e6574302f302f30 +1.3.6.1.2.1.2.2.1.2.2|4x|54776f4769676162697445746865726e6574302f302f31 +1.3.6.1.2.1.2.2.1.2.3|4x|54776f4769676162697445746865726e6574302f302f32 +1.3.6.1.2.1.2.2.1.2.4|4x|54776f4769676162697445746865726e6574302f302f33 +1.3.6.1.2.1.2.2.1.2.5|4x|54656e4769676162697445746865726e6574302f312f30 +1.3.6.1.2.1.2.2.1.2.6|4x|54656e4769676162697445746865726e6574302f312f31 +1.3.6.1.2.1.2.2.1.2.7|4|GigabitEthernet0 +1.3.6.1.2.1.2.2.1.2.8|4x|566f49502d4e756c6c30 +1.3.6.1.2.1.2.2.1.2.9|4|Null0 +1.3.6.1.2.1.2.2.1.2.10|4|Vlan1 +1.3.6.1.2.1.2.2.1.2.11|4|Vlan52 +1.3.6.1.2.1.2.2.1.2.12|4x|506f72742d6368616e6e656c39 +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|1 +1.3.6.1.2.1.2.2.1.3.9|2|1 +1.3.6.1.2.1.2.2.1.3.10|2|53 +1.3.6.1.2.1.2.2.1.3.11|2|53 +1.3.6.1.2.1.2.2.1.3.12|2|53 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|1500 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|2500000000 +1.3.6.1.2.1.2.2.1.5.2|66|2500000000 +1.3.6.1.2.1.2.2.1.5.3|66|2500000000 +1.3.6.1.2.1.2.2.1.5.4|66|2500000000 +1.3.6.1.2.1.2.2.1.5.5|66|4294967295 +1.3.6.1.2.1.2.2.1.5.6|66|4294967295 +1.3.6.1.2.1.2.2.1.5.7|66|1000000000 +1.3.6.1.2.1.2.2.1.5.8|66|4294967295 +1.3.6.1.2.1.2.2.1.5.9|66|4294967295 +1.3.6.1.2.1.2.2.1.5.10|66|1000000000 +1.3.6.1.2.1.2.2.1.5.11|66|1000000000 +1.3.6.1.2.1.2.2.1.5.12|66|4294967295 +1.3.6.1.2.1.2.2.1.6.1|4x|8c1e806f236c +1.3.6.1.2.1.2.2.1.6.2|4x|8c1e806f236d +1.3.6.1.2.1.2.2.1.6.3|4x|8c1e806f236e +1.3.6.1.2.1.2.2.1.6.4|4x|8c1e806f236f +1.3.6.1.2.1.2.2.1.6.5|4x|8c1e806f2370 +1.3.6.1.2.1.2.2.1.6.6|4x|8c1e806f2371 +1.3.6.1.2.1.2.2.1.6.7|4x|8c1e806f2361 +1.3.6.1.2.1.2.2.1.6.8|4| +1.3.6.1.2.1.2.2.1.6.9|4| +1.3.6.1.2.1.2.2.1.6.10|4x|8c1e806f236b +1.3.6.1.2.1.2.2.1.6.11|4x|8c1e806f236b +1.3.6.1.2.1.2.2.1.6.12|4x|8c1e806f2370 +1.3.6.1.2.1.2.2.1.7.1|2|2 +1.3.6.1.2.1.2.2.1.7.2|2|2 +1.3.6.1.2.1.2.2.1.7.3|2|2 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|2 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|2 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|2 +1.3.6.1.2.1.2.2.1.8.2|2|2 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|2 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|2 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|2155 +1.3.6.1.2.1.2.2.1.9.2|67|2164 +1.3.6.1.2.1.2.2.1.9.3|67|2164 +1.3.6.1.2.1.2.2.1.9.4|67|2165 +1.3.6.1.2.1.2.2.1.9.5|67|5142 +1.3.6.1.2.1.2.2.1.9.6|67|5365 +1.3.6.1.2.1.2.2.1.9.7|67|2215 +1.3.6.1.2.1.2.2.1.9.8|67|1453 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|2219 +1.3.6.1.2.1.2.2.1.9.11|67|5342 +1.3.6.1.2.1.2.2.1.9.12|67|5341 +1.3.6.1.2.1.2.2.1.10.1|65|0 +1.3.6.1.2.1.2.2.1.10.2|65|0 +1.3.6.1.2.1.2.2.1.10.3|65|0 +1.3.6.1.2.1.2.2.1.10.4|65|0 +1.3.6.1.2.1.2.2.1.10.5|65|822721104 +1.3.6.1.2.1.2.2.1.10.6|65|2607347898 +1.3.6.1.2.1.2.2.1.10.7|65|0 +1.3.6.1.2.1.2.2.1.10.8|65|0 +1.3.6.1.2.1.2.2.1.10.9|65|0 +1.3.6.1.2.1.2.2.1.10.10|65|0 +1.3.6.1.2.1.2.2.1.10.11|65|793397805 +1.3.6.1.2.1.2.2.1.10.12|65|3430069002 +1.3.6.1.2.1.2.2.1.11.1|65|0 +1.3.6.1.2.1.2.2.1.11.2|65|0 +1.3.6.1.2.1.2.2.1.11.3|65|0 +1.3.6.1.2.1.2.2.1.11.4|65|0 +1.3.6.1.2.1.2.2.1.11.5|65|376347559 +1.3.6.1.2.1.2.2.1.11.6|65|431452972 +1.3.6.1.2.1.2.2.1.11.7|65|0 +1.3.6.1.2.1.2.2.1.11.8|65|0 +1.3.6.1.2.1.2.2.1.11.9|65|0 +1.3.6.1.2.1.2.2.1.11.10|65|0 +1.3.6.1.2.1.2.2.1.11.11|65|3423374144 +1.3.6.1.2.1.2.2.1.11.12|65|807800531 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.4|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.6|65|0 +1.3.6.1.2.1.2.2.1.15.7|65|0 +1.3.6.1.2.1.2.2.1.15.8|65|0 +1.3.6.1.2.1.2.2.1.15.9|65|0 +1.3.6.1.2.1.2.2.1.15.10|65|0 +1.3.6.1.2.1.2.2.1.15.11|65|0 +1.3.6.1.2.1.2.2.1.15.12|65|302876 +1.3.6.1.2.1.2.2.1.16.1|65|0 +1.3.6.1.2.1.2.2.1.16.2|65|0 +1.3.6.1.2.1.2.2.1.16.3|65|0 +1.3.6.1.2.1.2.2.1.16.4|65|0 +1.3.6.1.2.1.2.2.1.16.5|65|373546667 +1.3.6.1.2.1.2.2.1.16.6|65|2786975603 +1.3.6.1.2.1.2.2.1.16.7|65|0 +1.3.6.1.2.1.2.2.1.16.8|65|0 +1.3.6.1.2.1.2.2.1.16.9|65|0 +1.3.6.1.2.1.2.2.1.16.10|65|0 +1.3.6.1.2.1.2.2.1.16.11|65|3748032450 +1.3.6.1.2.1.2.2.1.16.12|65|3160522270 +1.3.6.1.2.1.2.2.1.17.1|65|0 +1.3.6.1.2.1.2.2.1.17.2|65|0 +1.3.6.1.2.1.2.2.1.17.3|65|0 +1.3.6.1.2.1.2.2.1.17.4|65|0 +1.3.6.1.2.1.2.2.1.17.5|65|28156581 +1.3.6.1.2.1.2.2.1.17.6|65|1024218875 +1.3.6.1.2.1.2.2.1.17.7|65|0 +1.3.6.1.2.1.2.2.1.17.8|65|0 +1.3.6.1.2.1.2.2.1.17.9|65|0 +1.3.6.1.2.1.2.2.1.17.10|65|0 +1.3.6.1.2.1.2.2.1.17.11|65|2787644489 +1.3.6.1.2.1.2.2.1.17.12|65|1052375456 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.1|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.3|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.8|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.100|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.105|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.106|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.107|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.108|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.109|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.110|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.111|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.112|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.113|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.114|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.115|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.116|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.117|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.118|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.119|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.120|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.121|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.122|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.123|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.124|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.125|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.126|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.127|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.128|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.129|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.130|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.131|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.132|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.133|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.134|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.135|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.136|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.137|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.138|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.139|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.140|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.141|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.142|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.143|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.144|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.145|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.146|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.147|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.148|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.149|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.150|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.151|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.152|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.153|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.154|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.155|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.156|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.157|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.158|2|11 +1.3.6.1.2.1.3.1.1.1.11.1.10.183.52.159|2|11 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.1|4x|006cbc6829d4 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.3|4x|007278cd4241 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.8|4x|b02680d762c1 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.100|4x|8c1e806f236b +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.105|4x|588b1cb65b24 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.106|4x|588b1cb66518 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.107|4x|588b1cb66cdc +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.108|4x|588b1c016b0c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.109|4x|588b1c019a88 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.110|4x|588b1c016c50 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.111|4x|588b1c01b4ac +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.112|4x|588b1c01aaf8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.113|4x|588b1c01cee8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.114|4x|087b87141b20 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.115|4x|18f9355c50c8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.116|4x|087b871417f8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.117|4x|18f9355c8f58 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.118|4x|18f9355d2f20 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.119|4x|18f935d383b0 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.120|4x|e4a41cadf3a0 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.121|4x|e4a41cade21c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.122|4x|18f935d37eec +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.123|4x|087b8714125c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.124|4x|087b87141b1c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.125|4x|e4a41cadff84 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.126|4x|e4a41cadfd48 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.127|4x|087b871412dc +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.128|4x|18f9355d2934 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.129|4x|087b871418e8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.130|4x|18f9355d5434 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.131|4x|087b87141348 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.132|4x|087b871412d4 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.133|4x|00be75e92c7c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.134|4x|70708b0c71a6 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.135|4x|005d7318dc6c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.136|4x|003c10680d20 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.137|4x|1cd1e0ae15d0 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.138|4x|28ac9e04b58c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.139|4x|00be75e93100 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.140|4x|00be7565b956 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.141|4x|28ac9e04b584 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.142|4x|4c776de1e980 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.143|4x|70695a219d84 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.144|4x|28ac9e04b592 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.145|4x|70695a219936 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.146|4x|70695a219932 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.147|4x|28ac9e04b0e2 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.148|4x|00be75cffd06 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.149|4x|0845d131e5c8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.150|4x|0845d131e6e6 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.151|4x|28ac9e04b17a +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.152|4x|00be75e92bb0 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.153|4x|003c10680cd0 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.154|4x|00df1d2a32a8 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.155|4x|1cd1e0ae0e08 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.156|4x|0845d131e67c +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.157|4x|488b0a0f5228 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.158|4x|0845d131e666 +1.3.6.1.2.1.3.1.1.2.11.1.10.183.52.159|4x|f4dbe6e36d7c +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.1|64x|0ab73401 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.3|64x|0ab73403 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.8|64x|0ab73408 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.100|64x|0ab73464 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.105|64x|0ab73469 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.106|64x|0ab7346a +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.107|64x|0ab7346b +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.108|64x|0ab7346c +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.109|64x|0ab7346d +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.110|64x|0ab7346e +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.111|64x|0ab7346f +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.112|64x|0ab73470 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.113|64x|0ab73471 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.114|64x|0ab73472 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.115|64x|0ab73473 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.116|64x|0ab73474 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.117|64x|0ab73475 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.118|64x|0ab73476 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.119|64x|0ab73477 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.120|64x|0ab73478 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.121|64x|0ab73479 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.122|64x|0ab7347a +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.123|64x|0ab7347b +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.124|64x|0ab7347c +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.125|64x|0ab7347d +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.126|64x|0ab7347e +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.127|64x|0ab7347f +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.128|64x|0ab73480 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.129|64x|0ab73481 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.130|64x|0ab73482 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.131|64x|0ab73483 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.132|64x|0ab73484 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.133|64x|0ab73485 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.134|64x|0ab73486 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.135|64x|0ab73487 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.136|64x|0ab73488 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.137|64x|0ab73489 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.138|64x|0ab7348a +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.139|64x|0ab7348b +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.140|64x|0ab7348c +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.141|64x|0ab7348d +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.142|64x|0ab7348e +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.143|64x|0ab7348f +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.144|64x|0ab73490 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.145|64x|0ab73491 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.146|64x|0ab73492 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.147|64x|0ab73493 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.148|64x|0ab73494 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.149|64x|0ab73495 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.150|64x|0ab73496 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.151|64x|0ab73497 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.152|64x|0ab73498 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.153|64x|0ab73499 +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.154|64x|0ab7349a +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.155|64x|0ab7349b +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.156|64x|0ab7349c +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.157|64x|0ab7349d +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.158|64x|0ab7349e +1.3.6.1.2.1.3.1.1.3.11.1.10.183.52.159|64x|0ab7349f +1.3.6.1.2.1.4.1.0|2|1 +1.3.6.1.2.1.4.2.0|2|255 +1.3.6.1.2.1.4.3.0|65|1003228652 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|1803443882 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|4996869 +1.3.6.1.2.1.4.10.0|65|5090941 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|6 +1.3.6.1.2.1.4.13.0|2|30 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.1.10.183.52.100|64x|0ab73464 +1.3.6.1.2.1.4.20.1.2.10.183.52.100|2|11 +1.3.6.1.2.1.4.20.1.3.10.183.52.100|64x|ffffff00 +1.3.6.1.2.1.4.20.1.4.10.183.52.100|2|1 +1.3.6.1.2.1.4.20.1.5.10.183.52.100|2|18024 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.1|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.3|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.8|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.100|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.105|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.106|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.107|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.108|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.109|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.110|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.111|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.112|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.113|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.114|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.115|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.116|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.117|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.118|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.119|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.120|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.121|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.122|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.123|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.124|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.125|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.126|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.127|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.128|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.129|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.130|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.131|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.132|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.133|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.134|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.135|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.136|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.137|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.138|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.139|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.140|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.141|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.142|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.143|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.144|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.145|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.146|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.147|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.148|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.149|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.150|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.151|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.152|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.153|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.154|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.155|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.156|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.157|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.158|2|11 +1.3.6.1.2.1.4.22.1.1.11.10.183.52.159|2|11 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.1|4x|006cbc6829d4 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.3|4x|007278cd4241 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.8|4x|b02680d762c1 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.100|4x|8c1e806f236b +1.3.6.1.2.1.4.22.1.2.11.10.183.52.105|4x|588b1cb65b24 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.106|4x|588b1cb66518 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.107|4x|588b1cb66cdc +1.3.6.1.2.1.4.22.1.2.11.10.183.52.108|4x|588b1c016b0c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.109|4x|588b1c019a88 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.110|4x|588b1c016c50 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.111|4x|588b1c01b4ac +1.3.6.1.2.1.4.22.1.2.11.10.183.52.112|4x|588b1c01aaf8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.113|4x|588b1c01cee8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.114|4x|087b87141b20 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.115|4x|18f9355c50c8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.116|4x|087b871417f8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.117|4x|18f9355c8f58 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.118|4x|18f9355d2f20 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.119|4x|18f935d383b0 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.120|4x|e4a41cadf3a0 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.121|4x|e4a41cade21c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.122|4x|18f935d37eec +1.3.6.1.2.1.4.22.1.2.11.10.183.52.123|4x|087b8714125c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.124|4x|087b87141b1c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.125|4x|e4a41cadff84 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.126|4x|e4a41cadfd48 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.127|4x|087b871412dc +1.3.6.1.2.1.4.22.1.2.11.10.183.52.128|4x|18f9355d2934 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.129|4x|087b871418e8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.130|4x|18f9355d5434 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.131|4x|087b87141348 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.132|4x|087b871412d4 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.133|4x|00be75e92c7c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.134|4x|70708b0c71a6 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.135|4x|005d7318dc6c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.136|4x|003c10680d20 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.137|4x|1cd1e0ae15d0 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.138|4x|28ac9e04b58c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.139|4x|00be75e93100 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.140|4x|00be7565b956 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.141|4x|28ac9e04b584 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.142|4x|4c776de1e980 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.143|4x|70695a219d84 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.144|4x|28ac9e04b592 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.145|4x|70695a219936 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.146|4x|70695a219932 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.147|4x|28ac9e04b0e2 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.148|4x|00be75cffd06 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.149|4x|0845d131e5c8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.150|4x|0845d131e6e6 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.151|4x|28ac9e04b17a +1.3.6.1.2.1.4.22.1.2.11.10.183.52.152|4x|00be75e92bb0 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.153|4x|003c10680cd0 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.154|4x|00df1d2a32a8 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.155|4x|1cd1e0ae0e08 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.156|4x|0845d131e67c +1.3.6.1.2.1.4.22.1.2.11.10.183.52.157|4x|488b0a0f5228 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.158|4x|0845d131e666 +1.3.6.1.2.1.4.22.1.2.11.10.183.52.159|4x|f4dbe6e36d7c +1.3.6.1.2.1.4.22.1.3.11.10.183.52.1|64x|0ab73401 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.3|64x|0ab73403 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.8|64x|0ab73408 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.100|64x|0ab73464 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.105|64x|0ab73469 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.106|64x|0ab7346a +1.3.6.1.2.1.4.22.1.3.11.10.183.52.107|64x|0ab7346b +1.3.6.1.2.1.4.22.1.3.11.10.183.52.108|64x|0ab7346c +1.3.6.1.2.1.4.22.1.3.11.10.183.52.109|64x|0ab7346d +1.3.6.1.2.1.4.22.1.3.11.10.183.52.110|64x|0ab7346e +1.3.6.1.2.1.4.22.1.3.11.10.183.52.111|64x|0ab7346f +1.3.6.1.2.1.4.22.1.3.11.10.183.52.112|64x|0ab73470 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.113|64x|0ab73471 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.114|64x|0ab73472 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.115|64x|0ab73473 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.116|64x|0ab73474 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.117|64x|0ab73475 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.118|64x|0ab73476 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.119|64x|0ab73477 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.120|64x|0ab73478 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.121|64x|0ab73479 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.122|64x|0ab7347a +1.3.6.1.2.1.4.22.1.3.11.10.183.52.123|64x|0ab7347b +1.3.6.1.2.1.4.22.1.3.11.10.183.52.124|64x|0ab7347c +1.3.6.1.2.1.4.22.1.3.11.10.183.52.125|64x|0ab7347d +1.3.6.1.2.1.4.22.1.3.11.10.183.52.126|64x|0ab7347e +1.3.6.1.2.1.4.22.1.3.11.10.183.52.127|64x|0ab7347f +1.3.6.1.2.1.4.22.1.3.11.10.183.52.128|64x|0ab73480 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.129|64x|0ab73481 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.130|64x|0ab73482 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.131|64x|0ab73483 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.132|64x|0ab73484 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.133|64x|0ab73485 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.134|64x|0ab73486 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.135|64x|0ab73487 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.136|64x|0ab73488 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.137|64x|0ab73489 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.138|64x|0ab7348a +1.3.6.1.2.1.4.22.1.3.11.10.183.52.139|64x|0ab7348b +1.3.6.1.2.1.4.22.1.3.11.10.183.52.140|64x|0ab7348c +1.3.6.1.2.1.4.22.1.3.11.10.183.52.141|64x|0ab7348d +1.3.6.1.2.1.4.22.1.3.11.10.183.52.142|64x|0ab7348e +1.3.6.1.2.1.4.22.1.3.11.10.183.52.143|64x|0ab7348f +1.3.6.1.2.1.4.22.1.3.11.10.183.52.144|64x|0ab73490 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.145|64x|0ab73491 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.146|64x|0ab73492 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.147|64x|0ab73493 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.148|64x|0ab73494 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.149|64x|0ab73495 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.150|64x|0ab73496 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.151|64x|0ab73497 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.152|64x|0ab73498 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.153|64x|0ab73499 +1.3.6.1.2.1.4.22.1.3.11.10.183.52.154|64x|0ab7349a +1.3.6.1.2.1.4.22.1.3.11.10.183.52.155|64x|0ab7349b +1.3.6.1.2.1.4.22.1.3.11.10.183.52.156|64x|0ab7349c +1.3.6.1.2.1.4.22.1.3.11.10.183.52.157|64x|0ab7349d +1.3.6.1.2.1.4.22.1.3.11.10.183.52.158|64x|0ab7349e +1.3.6.1.2.1.4.22.1.3.11.10.183.52.159|64x|0ab7349f +1.3.6.1.2.1.4.22.1.4.11.10.183.52.1|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.3|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.8|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.100|2|4 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.105|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.106|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.107|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.108|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.109|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.110|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.111|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.112|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.113|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.114|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.115|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.116|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.117|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.118|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.119|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.120|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.121|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.122|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.123|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.124|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.125|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.126|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.127|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.128|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.129|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.130|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.131|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.132|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.133|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.134|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.135|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.136|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.137|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.138|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.139|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.140|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.141|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.142|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.143|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.144|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.145|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.146|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.147|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.148|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.149|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.150|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.151|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.152|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.153|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.154|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.155|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.156|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.157|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.158|2|3 +1.3.6.1.2.1.4.22.1.4.11.10.183.52.159|2|3 +1.3.6.1.2.1.4.23.0|65|0 +1.3.6.1.2.1.4.24.3.0|66|3 +1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.10.183.52.1|64x|00000000 +1.3.6.1.2.1.4.24.4.1.1.10.183.52.0.255.255.255.0.0.0.0.0.0|64x|0ab73400 +1.3.6.1.2.1.4.24.4.1.1.10.183.52.100.255.255.255.255.0.0.0.0.0|64x|0ab73464 +1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.10.183.52.1|64x|00000000 +1.3.6.1.2.1.4.24.4.1.2.10.183.52.0.255.255.255.0.0.0.0.0.0|64x|ffffff00 +1.3.6.1.2.1.4.24.4.1.2.10.183.52.100.255.255.255.255.0.0.0.0.0|64x|ffffffff +1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.10.183.52.1|2|0 +1.3.6.1.2.1.4.24.4.1.3.10.183.52.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.3.10.183.52.100.255.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.10.183.52.1|64x|0ab73401 +1.3.6.1.2.1.4.24.4.1.4.10.183.52.0.255.255.255.0.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.24.4.1.4.10.183.52.100.255.255.255.255.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.10.183.52.1|2|0 +1.3.6.1.2.1.4.24.4.1.5.10.183.52.0.255.255.255.0.0.0.0.0.0|2|11 +1.3.6.1.2.1.4.24.4.1.5.10.183.52.100.255.255.255.255.0.0.0.0.0|2|11 +1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.10.183.52.1|2|4 +1.3.6.1.2.1.4.24.4.1.6.10.183.52.0.255.255.255.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.6.10.183.52.100.255.255.255.255.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.10.183.52.1|2|3 +1.3.6.1.2.1.4.24.4.1.7.10.183.52.0.255.255.255.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.7.10.183.52.100.255.255.255.255.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.8.0.0.0.0.0.0.0.0.0.10.183.52.1|2|4294967 +1.3.6.1.2.1.4.24.4.1.8.10.183.52.0.255.255.255.0.0.0.0.0.0|2|4294967 +1.3.6.1.2.1.4.24.4.1.8.10.183.52.100.255.255.255.255.0.0.0.0.0|2|4294967 +1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.10.183.52.1|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.10.183.52.0.255.255.255.0.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.10.183.52.100.255.255.255.255.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.10.183.52.1|2|0 +1.3.6.1.2.1.4.24.4.1.10.10.183.52.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.10.10.183.52.100.255.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.10.183.52.1|2|0 +1.3.6.1.2.1.4.24.4.1.11.10.183.52.0.255.255.255.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.10.183.52.100.255.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.10.183.52.1|2|-1 +1.3.6.1.2.1.4.24.4.1.12.10.183.52.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.12.10.183.52.100.255.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.10.183.52.1|2|-1 +1.3.6.1.2.1.4.24.4.1.13.10.183.52.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.10.183.52.100.255.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.10.183.52.1|2|-1 +1.3.6.1.2.1.4.24.4.1.14.10.183.52.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.10.183.52.100.255.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.10.183.52.1|2|-1 +1.3.6.1.2.1.4.24.4.1.15.10.183.52.0.255.255.255.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.10.183.52.100.255.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.10.183.52.1|2|1 +1.3.6.1.2.1.4.24.4.1.16.10.183.52.0.255.255.255.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.16.10.183.52.100.255.255.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.6.0|66|5 +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.2.0.0.0.0|2|9 +1.3.6.1.2.1.4.24.7.1.7.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|9 +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.2.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|3 +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.2.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|2 +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.2.0.0.0.0|66|4294967 +1.3.6.1.2.1.4.24.7.1.10.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|66|4294967 +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.2.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|66|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.2.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|0 +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.2.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|-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.2.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|-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.2.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|-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.2.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|-1 +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.2.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.4.20.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30.0.0.1.8.2.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.8.0|65|0 +1.3.6.1.2.1.4.27.0|67|388809348 +1.3.6.1.2.1.4.28.1.2.11|2|18024 +1.3.6.1.2.1.4.28.1.3.11|2|1 +1.3.6.1.2.1.4.28.1.4.11|66|14400000 +1.3.6.1.2.1.4.31.1.1.3.1|65|1003234471 +1.3.6.1.2.1.4.31.1.1.3.2|65|52585759 +1.3.6.1.2.1.4.31.1.1.4.1|70|1003234471 +1.3.6.1.2.1.4.31.1.1.4.2|70|52585759 +1.3.6.1.2.1.4.31.1.1.5.1|65|4267060061 +1.3.6.1.2.1.4.31.1.1.5.2|65|3728521300 +1.3.6.1.2.1.4.31.1.1.6.1|70|10037310663517 +1.3.6.1.2.1.4.31.1.1.6.2|70|8023488596 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|4997229 +1.3.6.1.2.1.4.31.1.1.18.2|65|0 +1.3.6.1.2.1.4.31.1.1.19.1|70|4997231 +1.3.6.1.2.1.4.31.1.1.19.2|70|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|5091304 +1.3.6.1.2.1.4.31.1.1.20.2|65|0 +1.3.6.1.2.1.4.31.1.1.21.1|70|5091306 +1.3.6.1.2.1.4.31.1.1.21.2|70|0 +1.3.6.1.2.1.4.31.1.1.22.1|65|1357 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|1803454941 +1.3.6.1.2.1.4.31.1.1.23.2|65|5565990 +1.3.6.1.2.1.4.31.1.1.24.1|70|1803454941 +1.3.6.1.2.1.4.31.1.1.24.2|70|5565990 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|0 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|0 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|1803454941 +1.3.6.1.2.1.4.31.1.1.30.2|65|5565990 +1.3.6.1.2.1.4.31.1.1.31.1|70|1803454941 +1.3.6.1.2.1.4.31.1.1.31.2|70|5565990 +1.3.6.1.2.1.4.31.1.1.32.1|65|888837193 +1.3.6.1.2.1.4.31.1.1.32.2|65|1329034876 +1.3.6.1.2.1.4.31.1.1.33.1|70|24641116214345 +1.3.6.1.2.1.4.31.1.1.33.2|70|1329034876 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|0 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|0 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|0 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|65|503 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|503 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.3.1.3.1.11|65|3414927711 +1.3.6.1.2.1.4.31.3.1.4.1.11|70|3414927711 +1.3.6.1.2.1.4.31.3.1.5.1.11|65|287012445 +1.3.6.1.2.1.4.31.3.1.6.1.11|70|1576540010077 +1.3.6.1.2.1.4.31.3.1.7.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.8.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.9.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.10.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.11.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.12.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.13.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.14.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.15.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.16.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.17.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.18.1.11|65|2959449 +1.3.6.1.2.1.4.31.3.1.19.1.11|70|2959450 +1.3.6.1.2.1.4.31.3.1.20.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.21.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.23.1.11|65|2781153046 +1.3.6.1.2.1.4.31.3.1.24.1.11|70|7076120342 +1.3.6.1.2.1.4.31.3.1.25.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.26.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.27.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.28.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.29.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.30.1.11|65|2781153046 +1.3.6.1.2.1.4.31.3.1.31.1.11|70|7076120342 +1.3.6.1.2.1.4.31.3.1.32.1.11|65|3335307281 +1.3.6.1.2.1.4.31.3.1.33.1.11|70|7390679056401 +1.3.6.1.2.1.4.31.3.1.34.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.35.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.36.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.37.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.38.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.39.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.40.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.41.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.42.1.11|65|503 +1.3.6.1.2.1.4.31.3.1.43.1.11|70|503 +1.3.6.1.2.1.4.31.3.1.44.1.11|65|0 +1.3.6.1.2.1.4.31.3.1.45.1.11|70|0 +1.3.6.1.2.1.4.31.3.1.46.1.11|67|0 +1.3.6.1.2.1.4.32.1.5.11.1.4.10.183.52.0.24|2|2 +1.3.6.1.2.1.4.32.1.6.11.1.4.10.183.52.0.24|2|1 +1.3.6.1.2.1.4.32.1.7.11.1.4.10.183.52.0.24|2|2 +1.3.6.1.2.1.4.32.1.8.11.1.4.10.183.52.0.24|66|4294967295 +1.3.6.1.2.1.4.32.1.9.11.1.4.10.183.52.0.24|66|4294967295 +1.3.6.1.2.1.4.33.0|2|0 +1.3.6.1.2.1.4.34.1.3.1.4.10.183.52.100|2|11 +1.3.6.1.2.1.4.34.1.4.1.4.10.183.52.100|2|1 +1.3.6.1.2.1.4.34.1.5.1.4.10.183.52.100|6|1.3.6.1.2.1.4.32.1.5.11.1.4.10.183.52.0.24 +1.3.6.1.2.1.4.34.1.6.1.4.10.183.52.100|2|2 +1.3.6.1.2.1.4.34.1.7.1.4.10.183.52.100|2|1 +1.3.6.1.2.1.4.34.1.8.1.4.10.183.52.100|67|2219 +1.3.6.1.2.1.4.34.1.9.1.4.10.183.52.100|67|2219 +1.3.6.1.2.1.4.34.1.10.1.4.10.183.52.100|2|1 +1.3.6.1.2.1.4.34.1.11.1.4.10.183.52.100|2|3 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.1|4x|006cbc6829d4 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.3|4x|007278cd4241 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.8|4x|b02680d762c1 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.100|4x|8c1e806f236b +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.105|4x|588b1cb65b24 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.106|4x|588b1cb66518 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.107|4x|588b1cb66cdc +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.108|4x|588b1c016b0c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.109|4x|588b1c019a88 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.110|4x|588b1c016c50 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.111|4x|588b1c01b4ac +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.112|4x|588b1c01aaf8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.113|4x|588b1c01cee8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.114|4x|087b87141b20 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.115|4x|18f9355c50c8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.116|4x|087b871417f8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.117|4x|18f9355c8f58 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.118|4x|18f9355d2f20 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.119|4x|18f935d383b0 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.120|4x|e4a41cadf3a0 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.121|4x|e4a41cade21c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.122|4x|18f935d37eec +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.123|4x|087b8714125c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.124|4x|087b87141b1c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.125|4x|e4a41cadff84 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.126|4x|e4a41cadfd48 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.127|4x|087b871412dc +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.128|4x|18f9355d2934 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.129|4x|087b871418e8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.130|4x|18f9355d5434 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.131|4x|087b87141348 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.132|4x|087b871412d4 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.133|4x|00be75e92c7c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.134|4x|70708b0c71a6 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.135|4x|005d7318dc6c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.136|4x|003c10680d20 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.137|4x|1cd1e0ae15d0 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.138|4x|28ac9e04b58c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.139|4x|00be75e93100 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.140|4x|00be7565b956 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.141|4x|28ac9e04b584 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.142|4x|4c776de1e980 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.143|4x|70695a219d84 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.144|4x|28ac9e04b592 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.145|4x|70695a219936 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.146|4x|70695a219932 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.147|4x|28ac9e04b0e2 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.148|4x|00be75cffd06 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.149|4x|0845d131e5c8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.150|4x|0845d131e6e6 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.151|4x|28ac9e04b17a +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.152|4x|00be75e92bb0 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.153|4x|003c10680cd0 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.154|4x|00df1d2a32a8 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.155|4x|1cd1e0ae0e08 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.156|4x|0845d131e67c +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.157|4x|488b0a0f5228 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.158|4x|0845d131e666 +1.3.6.1.2.1.4.35.1.4.11.1.4.10.183.52.159|4x|f4dbe6e36d7c +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.1|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.3|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.8|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.100|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.105|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.106|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.107|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.108|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.109|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.110|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.111|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.112|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.113|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.114|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.115|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.116|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.117|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.118|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.119|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.120|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.121|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.122|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.123|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.124|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.125|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.126|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.127|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.128|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.129|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.130|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.131|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.132|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.133|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.134|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.135|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.136|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.137|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.138|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.139|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.140|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.141|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.142|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.143|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.144|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.145|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.146|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.147|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.148|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.149|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.150|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.151|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.152|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.153|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.154|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.155|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.156|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.157|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.158|67|2219 +1.3.6.1.2.1.4.35.1.5.11.1.4.10.183.52.159|67|2219 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.1|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.3|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.8|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.100|2|4 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.105|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.106|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.107|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.108|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.109|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.110|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.111|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.112|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.113|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.114|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.115|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.116|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.117|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.118|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.119|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.120|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.121|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.122|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.123|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.124|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.125|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.126|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.127|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.128|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.129|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.130|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.131|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.132|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.133|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.134|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.135|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.136|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.137|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.138|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.139|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.140|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.141|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.142|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.143|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.144|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.145|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.146|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.147|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.148|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.149|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.150|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.151|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.152|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.153|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.154|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.155|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.156|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.157|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.158|2|3 +1.3.6.1.2.1.4.35.1.6.11.1.4.10.183.52.159|2|3 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.1|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.3|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.8|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.100|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.105|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.106|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.107|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.108|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.109|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.110|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.111|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.112|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.113|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.114|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.115|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.116|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.117|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.118|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.119|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.120|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.121|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.122|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.123|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.124|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.125|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.126|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.127|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.128|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.129|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.130|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.131|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.132|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.133|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.134|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.135|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.136|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.137|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.138|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.139|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.140|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.141|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.142|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.143|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.144|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.145|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.146|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.147|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.148|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.149|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.150|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.151|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.152|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.153|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.154|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.155|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.156|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.157|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.158|2|6 +1.3.6.1.2.1.4.35.1.7.11.1.4.10.183.52.159|2|6 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.1|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.3|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.8|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.100|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.105|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.106|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.107|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.108|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.109|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.110|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.111|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.112|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.113|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.114|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.115|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.116|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.117|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.118|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.119|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.120|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.121|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.122|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.123|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.124|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.125|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.126|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.127|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.128|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.129|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.130|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.131|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.132|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.133|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.134|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.135|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.136|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.137|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.138|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.139|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.140|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.141|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.142|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.143|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.144|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.145|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.146|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.147|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.148|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.149|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.150|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.151|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.152|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.153|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.154|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.155|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.156|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.157|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.158|2|1 +1.3.6.1.2.1.4.35.1.8.11.1.4.10.183.52.159|2|1 +1.3.6.1.2.1.5.1.0|65|72280 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|683 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|71592 +1.3.6.1.2.1.5.9.0|65|5 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|71752 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|155 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|5 +1.3.6.1.2.1.5.22.0|65|71592 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|72280 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|0 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|71752 +1.3.6.1.2.1.5.29.1.4.2|65|0 +1.3.6.1.2.1.5.29.1.5.1|65|0 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|5 +1.3.6.1.2.1.5.30.1.3.1.1|65|0 +1.3.6.1.2.1.5.30.1.3.1.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|683 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.6|65|0 +1.3.6.1.2.1.5.30.1.3.1.7|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|71592 +1.3.6.1.2.1.5.30.1.3.1.9|65|0 +1.3.6.1.2.1.5.30.1.3.1.10|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|0 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.15|65|0 +1.3.6.1.2.1.5.30.1.3.1.16|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.1.18|65|0 +1.3.6.1.2.1.5.30.1.3.1.19|65|0 +1.3.6.1.2.1.5.30.1.3.1.20|65|0 +1.3.6.1.2.1.5.30.1.3.1.21|65|0 +1.3.6.1.2.1.5.30.1.3.1.22|65|0 +1.3.6.1.2.1.5.30.1.3.1.23|65|0 +1.3.6.1.2.1.5.30.1.3.1.24|65|0 +1.3.6.1.2.1.5.30.1.3.1.25|65|0 +1.3.6.1.2.1.5.30.1.3.1.26|65|0 +1.3.6.1.2.1.5.30.1.3.1.27|65|0 +1.3.6.1.2.1.5.30.1.3.1.28|65|0 +1.3.6.1.2.1.5.30.1.3.1.29|65|0 +1.3.6.1.2.1.5.30.1.3.1.30|65|0 +1.3.6.1.2.1.5.30.1.3.1.31|65|0 +1.3.6.1.2.1.5.30.1.3.1.32|65|0 +1.3.6.1.2.1.5.30.1.3.1.33|65|0 +1.3.6.1.2.1.5.30.1.3.1.34|65|0 +1.3.6.1.2.1.5.30.1.3.1.35|65|0 +1.3.6.1.2.1.5.30.1.3.1.36|65|0 +1.3.6.1.2.1.5.30.1.3.1.37|65|0 +1.3.6.1.2.1.5.30.1.3.1.38|65|0 +1.3.6.1.2.1.5.30.1.3.1.39|65|0 +1.3.6.1.2.1.5.30.1.3.1.40|65|0 +1.3.6.1.2.1.5.30.1.3.1.41|65|0 +1.3.6.1.2.1.5.30.1.3.1.42|65|0 +1.3.6.1.2.1.5.30.1.3.1.43|65|0 +1.3.6.1.2.1.5.30.1.3.1.44|65|0 +1.3.6.1.2.1.5.30.1.3.1.45|65|0 +1.3.6.1.2.1.5.30.1.3.1.46|65|0 +1.3.6.1.2.1.5.30.1.3.1.47|65|0 +1.3.6.1.2.1.5.30.1.3.1.48|65|0 +1.3.6.1.2.1.5.30.1.3.1.49|65|0 +1.3.6.1.2.1.5.30.1.3.1.50|65|0 +1.3.6.1.2.1.5.30.1.3.1.51|65|0 +1.3.6.1.2.1.5.30.1.3.1.52|65|0 +1.3.6.1.2.1.5.30.1.3.1.53|65|0 +1.3.6.1.2.1.5.30.1.3.1.54|65|0 +1.3.6.1.2.1.5.30.1.3.1.55|65|0 +1.3.6.1.2.1.5.30.1.3.1.56|65|0 +1.3.6.1.2.1.5.30.1.3.1.57|65|0 +1.3.6.1.2.1.5.30.1.3.1.58|65|0 +1.3.6.1.2.1.5.30.1.3.1.59|65|0 +1.3.6.1.2.1.5.30.1.3.1.60|65|0 +1.3.6.1.2.1.5.30.1.3.1.61|65|0 +1.3.6.1.2.1.5.30.1.3.1.62|65|0 +1.3.6.1.2.1.5.30.1.3.1.63|65|0 +1.3.6.1.2.1.5.30.1.3.1.64|65|0 +1.3.6.1.2.1.5.30.1.3.1.65|65|0 +1.3.6.1.2.1.5.30.1.3.1.66|65|0 +1.3.6.1.2.1.5.30.1.3.1.67|65|0 +1.3.6.1.2.1.5.30.1.3.1.68|65|0 +1.3.6.1.2.1.5.30.1.3.1.69|65|0 +1.3.6.1.2.1.5.30.1.3.1.70|65|0 +1.3.6.1.2.1.5.30.1.3.1.71|65|0 +1.3.6.1.2.1.5.30.1.3.1.72|65|0 +1.3.6.1.2.1.5.30.1.3.1.73|65|0 +1.3.6.1.2.1.5.30.1.3.1.74|65|0 +1.3.6.1.2.1.5.30.1.3.1.75|65|0 +1.3.6.1.2.1.5.30.1.3.1.76|65|0 +1.3.6.1.2.1.5.30.1.3.1.77|65|0 +1.3.6.1.2.1.5.30.1.3.1.78|65|0 +1.3.6.1.2.1.5.30.1.3.1.79|65|0 +1.3.6.1.2.1.5.30.1.3.1.80|65|0 +1.3.6.1.2.1.5.30.1.3.1.81|65|0 +1.3.6.1.2.1.5.30.1.3.1.82|65|0 +1.3.6.1.2.1.5.30.1.3.1.83|65|0 +1.3.6.1.2.1.5.30.1.3.1.84|65|0 +1.3.6.1.2.1.5.30.1.3.1.85|65|0 +1.3.6.1.2.1.5.30.1.3.1.86|65|0 +1.3.6.1.2.1.5.30.1.3.1.87|65|0 +1.3.6.1.2.1.5.30.1.3.1.88|65|0 +1.3.6.1.2.1.5.30.1.3.1.89|65|0 +1.3.6.1.2.1.5.30.1.3.1.90|65|0 +1.3.6.1.2.1.5.30.1.3.1.91|65|0 +1.3.6.1.2.1.5.30.1.3.1.92|65|0 +1.3.6.1.2.1.5.30.1.3.1.93|65|0 +1.3.6.1.2.1.5.30.1.3.1.94|65|0 +1.3.6.1.2.1.5.30.1.3.1.95|65|0 +1.3.6.1.2.1.5.30.1.3.1.96|65|0 +1.3.6.1.2.1.5.30.1.3.1.97|65|0 +1.3.6.1.2.1.5.30.1.3.1.98|65|0 +1.3.6.1.2.1.5.30.1.3.1.99|65|0 +1.3.6.1.2.1.5.30.1.3.1.100|65|0 +1.3.6.1.2.1.5.30.1.3.1.101|65|0 +1.3.6.1.2.1.5.30.1.3.1.102|65|0 +1.3.6.1.2.1.5.30.1.3.1.103|65|0 +1.3.6.1.2.1.5.30.1.3.1.104|65|0 +1.3.6.1.2.1.5.30.1.3.1.105|65|0 +1.3.6.1.2.1.5.30.1.3.1.106|65|0 +1.3.6.1.2.1.5.30.1.3.1.107|65|0 +1.3.6.1.2.1.5.30.1.3.1.108|65|0 +1.3.6.1.2.1.5.30.1.3.1.109|65|0 +1.3.6.1.2.1.5.30.1.3.1.110|65|0 +1.3.6.1.2.1.5.30.1.3.1.111|65|0 +1.3.6.1.2.1.5.30.1.3.1.112|65|0 +1.3.6.1.2.1.5.30.1.3.1.113|65|0 +1.3.6.1.2.1.5.30.1.3.1.114|65|0 +1.3.6.1.2.1.5.30.1.3.1.115|65|0 +1.3.6.1.2.1.5.30.1.3.1.116|65|0 +1.3.6.1.2.1.5.30.1.3.1.117|65|0 +1.3.6.1.2.1.5.30.1.3.1.118|65|0 +1.3.6.1.2.1.5.30.1.3.1.119|65|0 +1.3.6.1.2.1.5.30.1.3.1.120|65|0 +1.3.6.1.2.1.5.30.1.3.1.121|65|0 +1.3.6.1.2.1.5.30.1.3.1.122|65|0 +1.3.6.1.2.1.5.30.1.3.1.123|65|0 +1.3.6.1.2.1.5.30.1.3.1.124|65|0 +1.3.6.1.2.1.5.30.1.3.1.125|65|0 +1.3.6.1.2.1.5.30.1.3.1.126|65|0 +1.3.6.1.2.1.5.30.1.3.1.127|65|0 +1.3.6.1.2.1.5.30.1.3.1.128|65|0 +1.3.6.1.2.1.5.30.1.3.1.129|65|0 +1.3.6.1.2.1.5.30.1.3.1.130|65|0 +1.3.6.1.2.1.5.30.1.3.1.131|65|0 +1.3.6.1.2.1.5.30.1.3.1.132|65|0 +1.3.6.1.2.1.5.30.1.3.1.133|65|0 +1.3.6.1.2.1.5.30.1.3.1.134|65|0 +1.3.6.1.2.1.5.30.1.3.1.135|65|0 +1.3.6.1.2.1.5.30.1.3.1.136|65|0 +1.3.6.1.2.1.5.30.1.3.1.137|65|0 +1.3.6.1.2.1.5.30.1.3.1.138|65|0 +1.3.6.1.2.1.5.30.1.3.1.139|65|0 +1.3.6.1.2.1.5.30.1.3.1.140|65|0 +1.3.6.1.2.1.5.30.1.3.1.141|65|0 +1.3.6.1.2.1.5.30.1.3.1.142|65|0 +1.3.6.1.2.1.5.30.1.3.1.143|65|0 +1.3.6.1.2.1.5.30.1.3.1.144|65|0 +1.3.6.1.2.1.5.30.1.3.1.145|65|0 +1.3.6.1.2.1.5.30.1.3.1.146|65|0 +1.3.6.1.2.1.5.30.1.3.1.147|65|0 +1.3.6.1.2.1.5.30.1.3.1.148|65|0 +1.3.6.1.2.1.5.30.1.3.1.149|65|0 +1.3.6.1.2.1.5.30.1.3.1.150|65|0 +1.3.6.1.2.1.5.30.1.3.1.151|65|0 +1.3.6.1.2.1.5.30.1.3.1.152|65|0 +1.3.6.1.2.1.5.30.1.3.1.153|65|0 +1.3.6.1.2.1.5.30.1.3.1.154|65|0 +1.3.6.1.2.1.5.30.1.3.1.155|65|0 +1.3.6.1.2.1.5.30.1.3.1.156|65|0 +1.3.6.1.2.1.5.30.1.3.1.157|65|0 +1.3.6.1.2.1.5.30.1.3.1.158|65|0 +1.3.6.1.2.1.5.30.1.3.1.159|65|0 +1.3.6.1.2.1.5.30.1.3.1.160|65|0 +1.3.6.1.2.1.5.30.1.3.1.161|65|0 +1.3.6.1.2.1.5.30.1.3.1.162|65|0 +1.3.6.1.2.1.5.30.1.3.1.163|65|0 +1.3.6.1.2.1.5.30.1.3.1.164|65|0 +1.3.6.1.2.1.5.30.1.3.1.165|65|0 +1.3.6.1.2.1.5.30.1.3.1.166|65|0 +1.3.6.1.2.1.5.30.1.3.1.167|65|0 +1.3.6.1.2.1.5.30.1.3.1.168|65|0 +1.3.6.1.2.1.5.30.1.3.1.169|65|0 +1.3.6.1.2.1.5.30.1.3.1.170|65|0 +1.3.6.1.2.1.5.30.1.3.1.171|65|0 +1.3.6.1.2.1.5.30.1.3.1.172|65|0 +1.3.6.1.2.1.5.30.1.3.1.173|65|0 +1.3.6.1.2.1.5.30.1.3.1.174|65|0 +1.3.6.1.2.1.5.30.1.3.1.175|65|0 +1.3.6.1.2.1.5.30.1.3.1.176|65|0 +1.3.6.1.2.1.5.30.1.3.1.177|65|0 +1.3.6.1.2.1.5.30.1.3.1.178|65|0 +1.3.6.1.2.1.5.30.1.3.1.179|65|0 +1.3.6.1.2.1.5.30.1.3.1.180|65|0 +1.3.6.1.2.1.5.30.1.3.1.181|65|0 +1.3.6.1.2.1.5.30.1.3.1.182|65|0 +1.3.6.1.2.1.5.30.1.3.1.183|65|0 +1.3.6.1.2.1.5.30.1.3.1.184|65|0 +1.3.6.1.2.1.5.30.1.3.1.185|65|0 +1.3.6.1.2.1.5.30.1.3.1.186|65|0 +1.3.6.1.2.1.5.30.1.3.1.187|65|0 +1.3.6.1.2.1.5.30.1.3.1.188|65|0 +1.3.6.1.2.1.5.30.1.3.1.189|65|0 +1.3.6.1.2.1.5.30.1.3.1.190|65|0 +1.3.6.1.2.1.5.30.1.3.1.191|65|0 +1.3.6.1.2.1.5.30.1.3.1.192|65|0 +1.3.6.1.2.1.5.30.1.3.1.193|65|0 +1.3.6.1.2.1.5.30.1.3.1.194|65|0 +1.3.6.1.2.1.5.30.1.3.1.195|65|0 +1.3.6.1.2.1.5.30.1.3.1.196|65|0 +1.3.6.1.2.1.5.30.1.3.1.197|65|0 +1.3.6.1.2.1.5.30.1.3.1.198|65|0 +1.3.6.1.2.1.5.30.1.3.1.199|65|0 +1.3.6.1.2.1.5.30.1.3.1.200|65|0 +1.3.6.1.2.1.5.30.1.3.1.201|65|0 +1.3.6.1.2.1.5.30.1.3.1.202|65|0 +1.3.6.1.2.1.5.30.1.3.1.203|65|0 +1.3.6.1.2.1.5.30.1.3.1.204|65|0 +1.3.6.1.2.1.5.30.1.3.1.205|65|0 +1.3.6.1.2.1.5.30.1.3.1.206|65|0 +1.3.6.1.2.1.5.30.1.3.1.207|65|0 +1.3.6.1.2.1.5.30.1.3.1.208|65|0 +1.3.6.1.2.1.5.30.1.3.1.209|65|0 +1.3.6.1.2.1.5.30.1.3.1.210|65|0 +1.3.6.1.2.1.5.30.1.3.1.211|65|0 +1.3.6.1.2.1.5.30.1.3.1.212|65|0 +1.3.6.1.2.1.5.30.1.3.1.213|65|0 +1.3.6.1.2.1.5.30.1.3.1.214|65|0 +1.3.6.1.2.1.5.30.1.3.1.215|65|0 +1.3.6.1.2.1.5.30.1.3.1.216|65|0 +1.3.6.1.2.1.5.30.1.3.1.217|65|0 +1.3.6.1.2.1.5.30.1.3.1.218|65|0 +1.3.6.1.2.1.5.30.1.3.1.219|65|0 +1.3.6.1.2.1.5.30.1.3.1.220|65|0 +1.3.6.1.2.1.5.30.1.3.1.221|65|0 +1.3.6.1.2.1.5.30.1.3.1.222|65|0 +1.3.6.1.2.1.5.30.1.3.1.223|65|0 +1.3.6.1.2.1.5.30.1.3.1.224|65|0 +1.3.6.1.2.1.5.30.1.3.1.225|65|0 +1.3.6.1.2.1.5.30.1.3.1.226|65|0 +1.3.6.1.2.1.5.30.1.3.1.227|65|0 +1.3.6.1.2.1.5.30.1.3.1.228|65|0 +1.3.6.1.2.1.5.30.1.3.1.229|65|0 +1.3.6.1.2.1.5.30.1.3.1.230|65|0 +1.3.6.1.2.1.5.30.1.3.1.231|65|0 +1.3.6.1.2.1.5.30.1.3.1.232|65|0 +1.3.6.1.2.1.5.30.1.3.1.233|65|0 +1.3.6.1.2.1.5.30.1.3.1.234|65|0 +1.3.6.1.2.1.5.30.1.3.1.235|65|0 +1.3.6.1.2.1.5.30.1.3.1.236|65|0 +1.3.6.1.2.1.5.30.1.3.1.237|65|0 +1.3.6.1.2.1.5.30.1.3.1.238|65|0 +1.3.6.1.2.1.5.30.1.3.1.239|65|0 +1.3.6.1.2.1.5.30.1.3.1.240|65|0 +1.3.6.1.2.1.5.30.1.3.1.241|65|0 +1.3.6.1.2.1.5.30.1.3.1.242|65|0 +1.3.6.1.2.1.5.30.1.3.1.243|65|0 +1.3.6.1.2.1.5.30.1.3.1.244|65|0 +1.3.6.1.2.1.5.30.1.3.1.245|65|0 +1.3.6.1.2.1.5.30.1.3.1.246|65|0 +1.3.6.1.2.1.5.30.1.3.1.247|65|0 +1.3.6.1.2.1.5.30.1.3.1.248|65|0 +1.3.6.1.2.1.5.30.1.3.1.249|65|0 +1.3.6.1.2.1.5.30.1.3.1.250|65|0 +1.3.6.1.2.1.5.30.1.3.1.251|65|0 +1.3.6.1.2.1.5.30.1.3.1.252|65|0 +1.3.6.1.2.1.5.30.1.3.1.253|65|0 +1.3.6.1.2.1.5.30.1.3.1.254|65|0 +1.3.6.1.2.1.5.30.1.3.1.255|65|0 +1.3.6.1.2.1.5.30.1.3.2.0|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.5|65|0 +1.3.6.1.2.1.5.30.1.3.2.6|65|0 +1.3.6.1.2.1.5.30.1.3.2.7|65|0 +1.3.6.1.2.1.5.30.1.3.2.8|65|0 +1.3.6.1.2.1.5.30.1.3.2.9|65|0 +1.3.6.1.2.1.5.30.1.3.2.10|65|0 +1.3.6.1.2.1.5.30.1.3.2.11|65|0 +1.3.6.1.2.1.5.30.1.3.2.12|65|0 +1.3.6.1.2.1.5.30.1.3.2.13|65|0 +1.3.6.1.2.1.5.30.1.3.2.14|65|0 +1.3.6.1.2.1.5.30.1.3.2.15|65|0 +1.3.6.1.2.1.5.30.1.3.2.16|65|0 +1.3.6.1.2.1.5.30.1.3.2.17|65|0 +1.3.6.1.2.1.5.30.1.3.2.18|65|0 +1.3.6.1.2.1.5.30.1.3.2.19|65|0 +1.3.6.1.2.1.5.30.1.3.2.20|65|0 +1.3.6.1.2.1.5.30.1.3.2.21|65|0 +1.3.6.1.2.1.5.30.1.3.2.22|65|0 +1.3.6.1.2.1.5.30.1.3.2.23|65|0 +1.3.6.1.2.1.5.30.1.3.2.24|65|0 +1.3.6.1.2.1.5.30.1.3.2.25|65|0 +1.3.6.1.2.1.5.30.1.3.2.26|65|0 +1.3.6.1.2.1.5.30.1.3.2.27|65|0 +1.3.6.1.2.1.5.30.1.3.2.28|65|0 +1.3.6.1.2.1.5.30.1.3.2.29|65|0 +1.3.6.1.2.1.5.30.1.3.2.30|65|0 +1.3.6.1.2.1.5.30.1.3.2.31|65|0 +1.3.6.1.2.1.5.30.1.3.2.32|65|0 +1.3.6.1.2.1.5.30.1.3.2.33|65|0 +1.3.6.1.2.1.5.30.1.3.2.34|65|0 +1.3.6.1.2.1.5.30.1.3.2.35|65|0 +1.3.6.1.2.1.5.30.1.3.2.36|65|0 +1.3.6.1.2.1.5.30.1.3.2.37|65|0 +1.3.6.1.2.1.5.30.1.3.2.38|65|0 +1.3.6.1.2.1.5.30.1.3.2.39|65|0 +1.3.6.1.2.1.5.30.1.3.2.40|65|0 +1.3.6.1.2.1.5.30.1.3.2.41|65|0 +1.3.6.1.2.1.5.30.1.3.2.42|65|0 +1.3.6.1.2.1.5.30.1.3.2.43|65|0 +1.3.6.1.2.1.5.30.1.3.2.44|65|0 +1.3.6.1.2.1.5.30.1.3.2.45|65|0 +1.3.6.1.2.1.5.30.1.3.2.46|65|0 +1.3.6.1.2.1.5.30.1.3.2.47|65|0 +1.3.6.1.2.1.5.30.1.3.2.48|65|0 +1.3.6.1.2.1.5.30.1.3.2.49|65|0 +1.3.6.1.2.1.5.30.1.3.2.50|65|0 +1.3.6.1.2.1.5.30.1.3.2.51|65|0 +1.3.6.1.2.1.5.30.1.3.2.52|65|0 +1.3.6.1.2.1.5.30.1.3.2.53|65|0 +1.3.6.1.2.1.5.30.1.3.2.54|65|0 +1.3.6.1.2.1.5.30.1.3.2.55|65|0 +1.3.6.1.2.1.5.30.1.3.2.56|65|0 +1.3.6.1.2.1.5.30.1.3.2.57|65|0 +1.3.6.1.2.1.5.30.1.3.2.58|65|0 +1.3.6.1.2.1.5.30.1.3.2.59|65|0 +1.3.6.1.2.1.5.30.1.3.2.60|65|0 +1.3.6.1.2.1.5.30.1.3.2.61|65|0 +1.3.6.1.2.1.5.30.1.3.2.62|65|0 +1.3.6.1.2.1.5.30.1.3.2.63|65|0 +1.3.6.1.2.1.5.30.1.3.2.64|65|0 +1.3.6.1.2.1.5.30.1.3.2.65|65|0 +1.3.6.1.2.1.5.30.1.3.2.66|65|0 +1.3.6.1.2.1.5.30.1.3.2.67|65|0 +1.3.6.1.2.1.5.30.1.3.2.68|65|0 +1.3.6.1.2.1.5.30.1.3.2.69|65|0 +1.3.6.1.2.1.5.30.1.3.2.70|65|0 +1.3.6.1.2.1.5.30.1.3.2.71|65|0 +1.3.6.1.2.1.5.30.1.3.2.72|65|0 +1.3.6.1.2.1.5.30.1.3.2.73|65|0 +1.3.6.1.2.1.5.30.1.3.2.74|65|0 +1.3.6.1.2.1.5.30.1.3.2.75|65|0 +1.3.6.1.2.1.5.30.1.3.2.76|65|0 +1.3.6.1.2.1.5.30.1.3.2.77|65|0 +1.3.6.1.2.1.5.30.1.3.2.78|65|0 +1.3.6.1.2.1.5.30.1.3.2.79|65|0 +1.3.6.1.2.1.5.30.1.3.2.80|65|0 +1.3.6.1.2.1.5.30.1.3.2.81|65|0 +1.3.6.1.2.1.5.30.1.3.2.82|65|0 +1.3.6.1.2.1.5.30.1.3.2.83|65|0 +1.3.6.1.2.1.5.30.1.3.2.84|65|0 +1.3.6.1.2.1.5.30.1.3.2.85|65|0 +1.3.6.1.2.1.5.30.1.3.2.86|65|0 +1.3.6.1.2.1.5.30.1.3.2.87|65|0 +1.3.6.1.2.1.5.30.1.3.2.88|65|0 +1.3.6.1.2.1.5.30.1.3.2.89|65|0 +1.3.6.1.2.1.5.30.1.3.2.90|65|0 +1.3.6.1.2.1.5.30.1.3.2.91|65|0 +1.3.6.1.2.1.5.30.1.3.2.92|65|0 +1.3.6.1.2.1.5.30.1.3.2.93|65|0 +1.3.6.1.2.1.5.30.1.3.2.94|65|0 +1.3.6.1.2.1.5.30.1.3.2.95|65|0 +1.3.6.1.2.1.5.30.1.3.2.96|65|0 +1.3.6.1.2.1.5.30.1.3.2.97|65|0 +1.3.6.1.2.1.5.30.1.3.2.98|65|0 +1.3.6.1.2.1.5.30.1.3.2.99|65|0 +1.3.6.1.2.1.5.30.1.3.2.100|65|0 +1.3.6.1.2.1.5.30.1.3.2.101|65|0 +1.3.6.1.2.1.5.30.1.3.2.102|65|0 +1.3.6.1.2.1.5.30.1.3.2.103|65|0 +1.3.6.1.2.1.5.30.1.3.2.104|65|0 +1.3.6.1.2.1.5.30.1.3.2.105|65|0 +1.3.6.1.2.1.5.30.1.3.2.106|65|0 +1.3.6.1.2.1.5.30.1.3.2.107|65|0 +1.3.6.1.2.1.5.30.1.3.2.108|65|0 +1.3.6.1.2.1.5.30.1.3.2.109|65|0 +1.3.6.1.2.1.5.30.1.3.2.110|65|0 +1.3.6.1.2.1.5.30.1.3.2.111|65|0 +1.3.6.1.2.1.5.30.1.3.2.112|65|0 +1.3.6.1.2.1.5.30.1.3.2.113|65|0 +1.3.6.1.2.1.5.30.1.3.2.114|65|0 +1.3.6.1.2.1.5.30.1.3.2.115|65|0 +1.3.6.1.2.1.5.30.1.3.2.116|65|0 +1.3.6.1.2.1.5.30.1.3.2.117|65|0 +1.3.6.1.2.1.5.30.1.3.2.118|65|0 +1.3.6.1.2.1.5.30.1.3.2.119|65|0 +1.3.6.1.2.1.5.30.1.3.2.120|65|0 +1.3.6.1.2.1.5.30.1.3.2.121|65|0 +1.3.6.1.2.1.5.30.1.3.2.122|65|0 +1.3.6.1.2.1.5.30.1.3.2.123|65|0 +1.3.6.1.2.1.5.30.1.3.2.124|65|0 +1.3.6.1.2.1.5.30.1.3.2.125|65|0 +1.3.6.1.2.1.5.30.1.3.2.126|65|0 +1.3.6.1.2.1.5.30.1.3.2.127|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.138|65|0 +1.3.6.1.2.1.5.30.1.3.2.139|65|0 +1.3.6.1.2.1.5.30.1.3.2.140|65|0 +1.3.6.1.2.1.5.30.1.3.2.141|65|0 +1.3.6.1.2.1.5.30.1.3.2.142|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.3.2.144|65|0 +1.3.6.1.2.1.5.30.1.3.2.145|65|0 +1.3.6.1.2.1.5.30.1.3.2.146|65|0 +1.3.6.1.2.1.5.30.1.3.2.147|65|0 +1.3.6.1.2.1.5.30.1.3.2.148|65|0 +1.3.6.1.2.1.5.30.1.3.2.149|65|0 +1.3.6.1.2.1.5.30.1.3.2.150|65|0 +1.3.6.1.2.1.5.30.1.3.2.151|65|0 +1.3.6.1.2.1.5.30.1.3.2.152|65|0 +1.3.6.1.2.1.5.30.1.3.2.153|65|0 +1.3.6.1.2.1.5.30.1.3.2.154|65|0 +1.3.6.1.2.1.5.30.1.3.2.155|65|0 +1.3.6.1.2.1.5.30.1.3.2.156|65|0 +1.3.6.1.2.1.5.30.1.3.2.157|65|0 +1.3.6.1.2.1.5.30.1.3.2.158|65|0 +1.3.6.1.2.1.5.30.1.3.2.159|65|0 +1.3.6.1.2.1.5.30.1.3.2.160|65|0 +1.3.6.1.2.1.5.30.1.3.2.161|65|0 +1.3.6.1.2.1.5.30.1.3.2.162|65|0 +1.3.6.1.2.1.5.30.1.3.2.163|65|0 +1.3.6.1.2.1.5.30.1.3.2.164|65|0 +1.3.6.1.2.1.5.30.1.3.2.165|65|0 +1.3.6.1.2.1.5.30.1.3.2.166|65|0 +1.3.6.1.2.1.5.30.1.3.2.167|65|0 +1.3.6.1.2.1.5.30.1.3.2.168|65|0 +1.3.6.1.2.1.5.30.1.3.2.169|65|0 +1.3.6.1.2.1.5.30.1.3.2.170|65|0 +1.3.6.1.2.1.5.30.1.3.2.171|65|0 +1.3.6.1.2.1.5.30.1.3.2.172|65|0 +1.3.6.1.2.1.5.30.1.3.2.173|65|0 +1.3.6.1.2.1.5.30.1.3.2.174|65|0 +1.3.6.1.2.1.5.30.1.3.2.175|65|0 +1.3.6.1.2.1.5.30.1.3.2.176|65|0 +1.3.6.1.2.1.5.30.1.3.2.177|65|0 +1.3.6.1.2.1.5.30.1.3.2.178|65|0 +1.3.6.1.2.1.5.30.1.3.2.179|65|0 +1.3.6.1.2.1.5.30.1.3.2.180|65|0 +1.3.6.1.2.1.5.30.1.3.2.181|65|0 +1.3.6.1.2.1.5.30.1.3.2.182|65|0 +1.3.6.1.2.1.5.30.1.3.2.183|65|0 +1.3.6.1.2.1.5.30.1.3.2.184|65|0 +1.3.6.1.2.1.5.30.1.3.2.185|65|0 +1.3.6.1.2.1.5.30.1.3.2.186|65|0 +1.3.6.1.2.1.5.30.1.3.2.187|65|0 +1.3.6.1.2.1.5.30.1.3.2.188|65|0 +1.3.6.1.2.1.5.30.1.3.2.189|65|0 +1.3.6.1.2.1.5.30.1.3.2.190|65|0 +1.3.6.1.2.1.5.30.1.3.2.191|65|0 +1.3.6.1.2.1.5.30.1.3.2.192|65|0 +1.3.6.1.2.1.5.30.1.3.2.193|65|0 +1.3.6.1.2.1.5.30.1.3.2.194|65|0 +1.3.6.1.2.1.5.30.1.3.2.195|65|0 +1.3.6.1.2.1.5.30.1.3.2.196|65|0 +1.3.6.1.2.1.5.30.1.3.2.197|65|0 +1.3.6.1.2.1.5.30.1.3.2.198|65|0 +1.3.6.1.2.1.5.30.1.3.2.199|65|0 +1.3.6.1.2.1.5.30.1.3.2.200|65|0 +1.3.6.1.2.1.5.30.1.3.2.201|65|0 +1.3.6.1.2.1.5.30.1.3.2.202|65|0 +1.3.6.1.2.1.5.30.1.3.2.203|65|0 +1.3.6.1.2.1.5.30.1.3.2.204|65|0 +1.3.6.1.2.1.5.30.1.3.2.205|65|0 +1.3.6.1.2.1.5.30.1.3.2.206|65|0 +1.3.6.1.2.1.5.30.1.3.2.207|65|0 +1.3.6.1.2.1.5.30.1.3.2.208|65|0 +1.3.6.1.2.1.5.30.1.3.2.209|65|0 +1.3.6.1.2.1.5.30.1.3.2.210|65|0 +1.3.6.1.2.1.5.30.1.3.2.211|65|0 +1.3.6.1.2.1.5.30.1.3.2.212|65|0 +1.3.6.1.2.1.5.30.1.3.2.213|65|0 +1.3.6.1.2.1.5.30.1.3.2.214|65|0 +1.3.6.1.2.1.5.30.1.3.2.215|65|0 +1.3.6.1.2.1.5.30.1.3.2.216|65|0 +1.3.6.1.2.1.5.30.1.3.2.217|65|0 +1.3.6.1.2.1.5.30.1.3.2.218|65|0 +1.3.6.1.2.1.5.30.1.3.2.219|65|0 +1.3.6.1.2.1.5.30.1.3.2.220|65|0 +1.3.6.1.2.1.5.30.1.3.2.221|65|0 +1.3.6.1.2.1.5.30.1.3.2.222|65|0 +1.3.6.1.2.1.5.30.1.3.2.223|65|0 +1.3.6.1.2.1.5.30.1.3.2.224|65|0 +1.3.6.1.2.1.5.30.1.3.2.225|65|0 +1.3.6.1.2.1.5.30.1.3.2.226|65|0 +1.3.6.1.2.1.5.30.1.3.2.227|65|0 +1.3.6.1.2.1.5.30.1.3.2.228|65|0 +1.3.6.1.2.1.5.30.1.3.2.229|65|0 +1.3.6.1.2.1.5.30.1.3.2.230|65|0 +1.3.6.1.2.1.5.30.1.3.2.231|65|0 +1.3.6.1.2.1.5.30.1.3.2.232|65|0 +1.3.6.1.2.1.5.30.1.3.2.233|65|0 +1.3.6.1.2.1.5.30.1.3.2.234|65|0 +1.3.6.1.2.1.5.30.1.3.2.235|65|0 +1.3.6.1.2.1.5.30.1.3.2.236|65|0 +1.3.6.1.2.1.5.30.1.3.2.237|65|0 +1.3.6.1.2.1.5.30.1.3.2.238|65|0 +1.3.6.1.2.1.5.30.1.3.2.239|65|0 +1.3.6.1.2.1.5.30.1.3.2.240|65|0 +1.3.6.1.2.1.5.30.1.3.2.241|65|0 +1.3.6.1.2.1.5.30.1.3.2.242|65|0 +1.3.6.1.2.1.5.30.1.3.2.243|65|0 +1.3.6.1.2.1.5.30.1.3.2.244|65|0 +1.3.6.1.2.1.5.30.1.3.2.245|65|0 +1.3.6.1.2.1.5.30.1.3.2.246|65|0 +1.3.6.1.2.1.5.30.1.3.2.247|65|0 +1.3.6.1.2.1.5.30.1.3.2.248|65|0 +1.3.6.1.2.1.5.30.1.3.2.249|65|0 +1.3.6.1.2.1.5.30.1.3.2.250|65|0 +1.3.6.1.2.1.5.30.1.3.2.251|65|0 +1.3.6.1.2.1.5.30.1.3.2.252|65|0 +1.3.6.1.2.1.5.30.1.3.2.253|65|0 +1.3.6.1.2.1.5.30.1.3.2.254|65|0 +1.3.6.1.2.1.5.30.1.3.2.255|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|71592 +1.3.6.1.2.1.5.30.1.4.1.1|65|0 +1.3.6.1.2.1.5.30.1.4.1.2|65|0 +1.3.6.1.2.1.5.30.1.4.1.3|65|155 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.6|65|0 +1.3.6.1.2.1.5.30.1.4.1.7|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|5 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.1.10|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.15|65|0 +1.3.6.1.2.1.5.30.1.4.1.16|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.1.18|65|0 +1.3.6.1.2.1.5.30.1.4.1.19|65|0 +1.3.6.1.2.1.5.30.1.4.1.20|65|0 +1.3.6.1.2.1.5.30.1.4.1.21|65|0 +1.3.6.1.2.1.5.30.1.4.1.22|65|0 +1.3.6.1.2.1.5.30.1.4.1.23|65|0 +1.3.6.1.2.1.5.30.1.4.1.24|65|0 +1.3.6.1.2.1.5.30.1.4.1.25|65|0 +1.3.6.1.2.1.5.30.1.4.1.26|65|0 +1.3.6.1.2.1.5.30.1.4.1.27|65|0 +1.3.6.1.2.1.5.30.1.4.1.28|65|0 +1.3.6.1.2.1.5.30.1.4.1.29|65|0 +1.3.6.1.2.1.5.30.1.4.1.30|65|0 +1.3.6.1.2.1.5.30.1.4.1.31|65|0 +1.3.6.1.2.1.5.30.1.4.1.32|65|0 +1.3.6.1.2.1.5.30.1.4.1.33|65|0 +1.3.6.1.2.1.5.30.1.4.1.34|65|0 +1.3.6.1.2.1.5.30.1.4.1.35|65|0 +1.3.6.1.2.1.5.30.1.4.1.36|65|0 +1.3.6.1.2.1.5.30.1.4.1.37|65|0 +1.3.6.1.2.1.5.30.1.4.1.38|65|0 +1.3.6.1.2.1.5.30.1.4.1.39|65|0 +1.3.6.1.2.1.5.30.1.4.1.40|65|0 +1.3.6.1.2.1.5.30.1.4.1.41|65|0 +1.3.6.1.2.1.5.30.1.4.1.42|65|0 +1.3.6.1.2.1.5.30.1.4.1.43|65|0 +1.3.6.1.2.1.5.30.1.4.1.44|65|0 +1.3.6.1.2.1.5.30.1.4.1.45|65|0 +1.3.6.1.2.1.5.30.1.4.1.46|65|0 +1.3.6.1.2.1.5.30.1.4.1.47|65|0 +1.3.6.1.2.1.5.30.1.4.1.48|65|0 +1.3.6.1.2.1.5.30.1.4.1.49|65|0 +1.3.6.1.2.1.5.30.1.4.1.50|65|0 +1.3.6.1.2.1.5.30.1.4.1.51|65|0 +1.3.6.1.2.1.5.30.1.4.1.52|65|0 +1.3.6.1.2.1.5.30.1.4.1.53|65|0 +1.3.6.1.2.1.5.30.1.4.1.54|65|0 +1.3.6.1.2.1.5.30.1.4.1.55|65|0 +1.3.6.1.2.1.5.30.1.4.1.56|65|0 +1.3.6.1.2.1.5.30.1.4.1.57|65|0 +1.3.6.1.2.1.5.30.1.4.1.58|65|0 +1.3.6.1.2.1.5.30.1.4.1.59|65|0 +1.3.6.1.2.1.5.30.1.4.1.60|65|0 +1.3.6.1.2.1.5.30.1.4.1.61|65|0 +1.3.6.1.2.1.5.30.1.4.1.62|65|0 +1.3.6.1.2.1.5.30.1.4.1.63|65|0 +1.3.6.1.2.1.5.30.1.4.1.64|65|0 +1.3.6.1.2.1.5.30.1.4.1.65|65|0 +1.3.6.1.2.1.5.30.1.4.1.66|65|0 +1.3.6.1.2.1.5.30.1.4.1.67|65|0 +1.3.6.1.2.1.5.30.1.4.1.68|65|0 +1.3.6.1.2.1.5.30.1.4.1.69|65|0 +1.3.6.1.2.1.5.30.1.4.1.70|65|0 +1.3.6.1.2.1.5.30.1.4.1.71|65|0 +1.3.6.1.2.1.5.30.1.4.1.72|65|0 +1.3.6.1.2.1.5.30.1.4.1.73|65|0 +1.3.6.1.2.1.5.30.1.4.1.74|65|0 +1.3.6.1.2.1.5.30.1.4.1.75|65|0 +1.3.6.1.2.1.5.30.1.4.1.76|65|0 +1.3.6.1.2.1.5.30.1.4.1.77|65|0 +1.3.6.1.2.1.5.30.1.4.1.78|65|0 +1.3.6.1.2.1.5.30.1.4.1.79|65|0 +1.3.6.1.2.1.5.30.1.4.1.80|65|0 +1.3.6.1.2.1.5.30.1.4.1.81|65|0 +1.3.6.1.2.1.5.30.1.4.1.82|65|0 +1.3.6.1.2.1.5.30.1.4.1.83|65|0 +1.3.6.1.2.1.5.30.1.4.1.84|65|0 +1.3.6.1.2.1.5.30.1.4.1.85|65|0 +1.3.6.1.2.1.5.30.1.4.1.86|65|0 +1.3.6.1.2.1.5.30.1.4.1.87|65|0 +1.3.6.1.2.1.5.30.1.4.1.88|65|0 +1.3.6.1.2.1.5.30.1.4.1.89|65|0 +1.3.6.1.2.1.5.30.1.4.1.90|65|0 +1.3.6.1.2.1.5.30.1.4.1.91|65|0 +1.3.6.1.2.1.5.30.1.4.1.92|65|0 +1.3.6.1.2.1.5.30.1.4.1.93|65|0 +1.3.6.1.2.1.5.30.1.4.1.94|65|0 +1.3.6.1.2.1.5.30.1.4.1.95|65|0 +1.3.6.1.2.1.5.30.1.4.1.96|65|0 +1.3.6.1.2.1.5.30.1.4.1.97|65|0 +1.3.6.1.2.1.5.30.1.4.1.98|65|0 +1.3.6.1.2.1.5.30.1.4.1.99|65|0 +1.3.6.1.2.1.5.30.1.4.1.100|65|0 +1.3.6.1.2.1.5.30.1.4.1.101|65|0 +1.3.6.1.2.1.5.30.1.4.1.102|65|0 +1.3.6.1.2.1.5.30.1.4.1.103|65|0 +1.3.6.1.2.1.5.30.1.4.1.104|65|0 +1.3.6.1.2.1.5.30.1.4.1.105|65|0 +1.3.6.1.2.1.5.30.1.4.1.106|65|0 +1.3.6.1.2.1.5.30.1.4.1.107|65|0 +1.3.6.1.2.1.5.30.1.4.1.108|65|0 +1.3.6.1.2.1.5.30.1.4.1.109|65|0 +1.3.6.1.2.1.5.30.1.4.1.110|65|0 +1.3.6.1.2.1.5.30.1.4.1.111|65|0 +1.3.6.1.2.1.5.30.1.4.1.112|65|0 +1.3.6.1.2.1.5.30.1.4.1.113|65|0 +1.3.6.1.2.1.5.30.1.4.1.114|65|0 +1.3.6.1.2.1.5.30.1.4.1.115|65|0 +1.3.6.1.2.1.5.30.1.4.1.116|65|0 +1.3.6.1.2.1.5.30.1.4.1.117|65|0 +1.3.6.1.2.1.5.30.1.4.1.118|65|0 +1.3.6.1.2.1.5.30.1.4.1.119|65|0 +1.3.6.1.2.1.5.30.1.4.1.120|65|0 +1.3.6.1.2.1.5.30.1.4.1.121|65|0 +1.3.6.1.2.1.5.30.1.4.1.122|65|0 +1.3.6.1.2.1.5.30.1.4.1.123|65|0 +1.3.6.1.2.1.5.30.1.4.1.124|65|0 +1.3.6.1.2.1.5.30.1.4.1.125|65|0 +1.3.6.1.2.1.5.30.1.4.1.126|65|0 +1.3.6.1.2.1.5.30.1.4.1.127|65|0 +1.3.6.1.2.1.5.30.1.4.1.128|65|0 +1.3.6.1.2.1.5.30.1.4.1.129|65|0 +1.3.6.1.2.1.5.30.1.4.1.130|65|0 +1.3.6.1.2.1.5.30.1.4.1.131|65|0 +1.3.6.1.2.1.5.30.1.4.1.132|65|0 +1.3.6.1.2.1.5.30.1.4.1.133|65|0 +1.3.6.1.2.1.5.30.1.4.1.134|65|0 +1.3.6.1.2.1.5.30.1.4.1.135|65|0 +1.3.6.1.2.1.5.30.1.4.1.136|65|0 +1.3.6.1.2.1.5.30.1.4.1.137|65|0 +1.3.6.1.2.1.5.30.1.4.1.138|65|0 +1.3.6.1.2.1.5.30.1.4.1.139|65|0 +1.3.6.1.2.1.5.30.1.4.1.140|65|0 +1.3.6.1.2.1.5.30.1.4.1.141|65|0 +1.3.6.1.2.1.5.30.1.4.1.142|65|0 +1.3.6.1.2.1.5.30.1.4.1.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.144|65|0 +1.3.6.1.2.1.5.30.1.4.1.145|65|0 +1.3.6.1.2.1.5.30.1.4.1.146|65|0 +1.3.6.1.2.1.5.30.1.4.1.147|65|0 +1.3.6.1.2.1.5.30.1.4.1.148|65|0 +1.3.6.1.2.1.5.30.1.4.1.149|65|0 +1.3.6.1.2.1.5.30.1.4.1.150|65|0 +1.3.6.1.2.1.5.30.1.4.1.151|65|0 +1.3.6.1.2.1.5.30.1.4.1.152|65|0 +1.3.6.1.2.1.5.30.1.4.1.153|65|0 +1.3.6.1.2.1.5.30.1.4.1.154|65|0 +1.3.6.1.2.1.5.30.1.4.1.155|65|0 +1.3.6.1.2.1.5.30.1.4.1.156|65|0 +1.3.6.1.2.1.5.30.1.4.1.157|65|0 +1.3.6.1.2.1.5.30.1.4.1.158|65|0 +1.3.6.1.2.1.5.30.1.4.1.159|65|0 +1.3.6.1.2.1.5.30.1.4.1.160|65|0 +1.3.6.1.2.1.5.30.1.4.1.161|65|0 +1.3.6.1.2.1.5.30.1.4.1.162|65|0 +1.3.6.1.2.1.5.30.1.4.1.163|65|0 +1.3.6.1.2.1.5.30.1.4.1.164|65|0 +1.3.6.1.2.1.5.30.1.4.1.165|65|0 +1.3.6.1.2.1.5.30.1.4.1.166|65|0 +1.3.6.1.2.1.5.30.1.4.1.167|65|0 +1.3.6.1.2.1.5.30.1.4.1.168|65|0 +1.3.6.1.2.1.5.30.1.4.1.169|65|0 +1.3.6.1.2.1.5.30.1.4.1.170|65|0 +1.3.6.1.2.1.5.30.1.4.1.171|65|0 +1.3.6.1.2.1.5.30.1.4.1.172|65|0 +1.3.6.1.2.1.5.30.1.4.1.173|65|0 +1.3.6.1.2.1.5.30.1.4.1.174|65|0 +1.3.6.1.2.1.5.30.1.4.1.175|65|0 +1.3.6.1.2.1.5.30.1.4.1.176|65|0 +1.3.6.1.2.1.5.30.1.4.1.177|65|0 +1.3.6.1.2.1.5.30.1.4.1.178|65|0 +1.3.6.1.2.1.5.30.1.4.1.179|65|0 +1.3.6.1.2.1.5.30.1.4.1.180|65|0 +1.3.6.1.2.1.5.30.1.4.1.181|65|0 +1.3.6.1.2.1.5.30.1.4.1.182|65|0 +1.3.6.1.2.1.5.30.1.4.1.183|65|0 +1.3.6.1.2.1.5.30.1.4.1.184|65|0 +1.3.6.1.2.1.5.30.1.4.1.185|65|0 +1.3.6.1.2.1.5.30.1.4.1.186|65|0 +1.3.6.1.2.1.5.30.1.4.1.187|65|0 +1.3.6.1.2.1.5.30.1.4.1.188|65|0 +1.3.6.1.2.1.5.30.1.4.1.189|65|0 +1.3.6.1.2.1.5.30.1.4.1.190|65|0 +1.3.6.1.2.1.5.30.1.4.1.191|65|0 +1.3.6.1.2.1.5.30.1.4.1.192|65|0 +1.3.6.1.2.1.5.30.1.4.1.193|65|0 +1.3.6.1.2.1.5.30.1.4.1.194|65|0 +1.3.6.1.2.1.5.30.1.4.1.195|65|0 +1.3.6.1.2.1.5.30.1.4.1.196|65|0 +1.3.6.1.2.1.5.30.1.4.1.197|65|0 +1.3.6.1.2.1.5.30.1.4.1.198|65|0 +1.3.6.1.2.1.5.30.1.4.1.199|65|0 +1.3.6.1.2.1.5.30.1.4.1.200|65|0 +1.3.6.1.2.1.5.30.1.4.1.201|65|0 +1.3.6.1.2.1.5.30.1.4.1.202|65|0 +1.3.6.1.2.1.5.30.1.4.1.203|65|0 +1.3.6.1.2.1.5.30.1.4.1.204|65|0 +1.3.6.1.2.1.5.30.1.4.1.205|65|0 +1.3.6.1.2.1.5.30.1.4.1.206|65|0 +1.3.6.1.2.1.5.30.1.4.1.207|65|0 +1.3.6.1.2.1.5.30.1.4.1.208|65|0 +1.3.6.1.2.1.5.30.1.4.1.209|65|0 +1.3.6.1.2.1.5.30.1.4.1.210|65|0 +1.3.6.1.2.1.5.30.1.4.1.211|65|0 +1.3.6.1.2.1.5.30.1.4.1.212|65|0 +1.3.6.1.2.1.5.30.1.4.1.213|65|0 +1.3.6.1.2.1.5.30.1.4.1.214|65|0 +1.3.6.1.2.1.5.30.1.4.1.215|65|0 +1.3.6.1.2.1.5.30.1.4.1.216|65|0 +1.3.6.1.2.1.5.30.1.4.1.217|65|0 +1.3.6.1.2.1.5.30.1.4.1.218|65|0 +1.3.6.1.2.1.5.30.1.4.1.219|65|0 +1.3.6.1.2.1.5.30.1.4.1.220|65|0 +1.3.6.1.2.1.5.30.1.4.1.221|65|0 +1.3.6.1.2.1.5.30.1.4.1.222|65|0 +1.3.6.1.2.1.5.30.1.4.1.223|65|0 +1.3.6.1.2.1.5.30.1.4.1.224|65|0 +1.3.6.1.2.1.5.30.1.4.1.225|65|0 +1.3.6.1.2.1.5.30.1.4.1.226|65|0 +1.3.6.1.2.1.5.30.1.4.1.227|65|0 +1.3.6.1.2.1.5.30.1.4.1.228|65|0 +1.3.6.1.2.1.5.30.1.4.1.229|65|0 +1.3.6.1.2.1.5.30.1.4.1.230|65|0 +1.3.6.1.2.1.5.30.1.4.1.231|65|0 +1.3.6.1.2.1.5.30.1.4.1.232|65|0 +1.3.6.1.2.1.5.30.1.4.1.233|65|0 +1.3.6.1.2.1.5.30.1.4.1.234|65|0 +1.3.6.1.2.1.5.30.1.4.1.235|65|0 +1.3.6.1.2.1.5.30.1.4.1.236|65|0 +1.3.6.1.2.1.5.30.1.4.1.237|65|0 +1.3.6.1.2.1.5.30.1.4.1.238|65|0 +1.3.6.1.2.1.5.30.1.4.1.239|65|0 +1.3.6.1.2.1.5.30.1.4.1.240|65|0 +1.3.6.1.2.1.5.30.1.4.1.241|65|0 +1.3.6.1.2.1.5.30.1.4.1.242|65|0 +1.3.6.1.2.1.5.30.1.4.1.243|65|0 +1.3.6.1.2.1.5.30.1.4.1.244|65|0 +1.3.6.1.2.1.5.30.1.4.1.245|65|0 +1.3.6.1.2.1.5.30.1.4.1.246|65|0 +1.3.6.1.2.1.5.30.1.4.1.247|65|0 +1.3.6.1.2.1.5.30.1.4.1.248|65|0 +1.3.6.1.2.1.5.30.1.4.1.249|65|0 +1.3.6.1.2.1.5.30.1.4.1.250|65|0 +1.3.6.1.2.1.5.30.1.4.1.251|65|0 +1.3.6.1.2.1.5.30.1.4.1.252|65|0 +1.3.6.1.2.1.5.30.1.4.1.253|65|0 +1.3.6.1.2.1.5.30.1.4.1.254|65|0 +1.3.6.1.2.1.5.30.1.4.1.255|65|0 +1.3.6.1.2.1.5.30.1.4.2.0|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.5|65|0 +1.3.6.1.2.1.5.30.1.4.2.6|65|0 +1.3.6.1.2.1.5.30.1.4.2.7|65|0 +1.3.6.1.2.1.5.30.1.4.2.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.10|65|0 +1.3.6.1.2.1.5.30.1.4.2.11|65|0 +1.3.6.1.2.1.5.30.1.4.2.12|65|0 +1.3.6.1.2.1.5.30.1.4.2.13|65|0 +1.3.6.1.2.1.5.30.1.4.2.14|65|0 +1.3.6.1.2.1.5.30.1.4.2.15|65|0 +1.3.6.1.2.1.5.30.1.4.2.16|65|0 +1.3.6.1.2.1.5.30.1.4.2.17|65|0 +1.3.6.1.2.1.5.30.1.4.2.18|65|0 +1.3.6.1.2.1.5.30.1.4.2.19|65|0 +1.3.6.1.2.1.5.30.1.4.2.20|65|0 +1.3.6.1.2.1.5.30.1.4.2.21|65|0 +1.3.6.1.2.1.5.30.1.4.2.22|65|0 +1.3.6.1.2.1.5.30.1.4.2.23|65|0 +1.3.6.1.2.1.5.30.1.4.2.24|65|0 +1.3.6.1.2.1.5.30.1.4.2.25|65|0 +1.3.6.1.2.1.5.30.1.4.2.26|65|0 +1.3.6.1.2.1.5.30.1.4.2.27|65|0 +1.3.6.1.2.1.5.30.1.4.2.28|65|0 +1.3.6.1.2.1.5.30.1.4.2.29|65|0 +1.3.6.1.2.1.5.30.1.4.2.30|65|0 +1.3.6.1.2.1.5.30.1.4.2.31|65|0 +1.3.6.1.2.1.5.30.1.4.2.32|65|0 +1.3.6.1.2.1.5.30.1.4.2.33|65|0 +1.3.6.1.2.1.5.30.1.4.2.34|65|0 +1.3.6.1.2.1.5.30.1.4.2.35|65|0 +1.3.6.1.2.1.5.30.1.4.2.36|65|0 +1.3.6.1.2.1.5.30.1.4.2.37|65|0 +1.3.6.1.2.1.5.30.1.4.2.38|65|0 +1.3.6.1.2.1.5.30.1.4.2.39|65|0 +1.3.6.1.2.1.5.30.1.4.2.40|65|0 +1.3.6.1.2.1.5.30.1.4.2.41|65|0 +1.3.6.1.2.1.5.30.1.4.2.42|65|0 +1.3.6.1.2.1.5.30.1.4.2.43|65|0 +1.3.6.1.2.1.5.30.1.4.2.44|65|0 +1.3.6.1.2.1.5.30.1.4.2.45|65|0 +1.3.6.1.2.1.5.30.1.4.2.46|65|0 +1.3.6.1.2.1.5.30.1.4.2.47|65|0 +1.3.6.1.2.1.5.30.1.4.2.48|65|0 +1.3.6.1.2.1.5.30.1.4.2.49|65|0 +1.3.6.1.2.1.5.30.1.4.2.50|65|0 +1.3.6.1.2.1.5.30.1.4.2.51|65|0 +1.3.6.1.2.1.5.30.1.4.2.52|65|0 +1.3.6.1.2.1.5.30.1.4.2.53|65|0 +1.3.6.1.2.1.5.30.1.4.2.54|65|0 +1.3.6.1.2.1.5.30.1.4.2.55|65|0 +1.3.6.1.2.1.5.30.1.4.2.56|65|0 +1.3.6.1.2.1.5.30.1.4.2.57|65|0 +1.3.6.1.2.1.5.30.1.4.2.58|65|0 +1.3.6.1.2.1.5.30.1.4.2.59|65|0 +1.3.6.1.2.1.5.30.1.4.2.60|65|0 +1.3.6.1.2.1.5.30.1.4.2.61|65|0 +1.3.6.1.2.1.5.30.1.4.2.62|65|0 +1.3.6.1.2.1.5.30.1.4.2.63|65|0 +1.3.6.1.2.1.5.30.1.4.2.64|65|0 +1.3.6.1.2.1.5.30.1.4.2.65|65|0 +1.3.6.1.2.1.5.30.1.4.2.66|65|0 +1.3.6.1.2.1.5.30.1.4.2.67|65|0 +1.3.6.1.2.1.5.30.1.4.2.68|65|0 +1.3.6.1.2.1.5.30.1.4.2.69|65|0 +1.3.6.1.2.1.5.30.1.4.2.70|65|0 +1.3.6.1.2.1.5.30.1.4.2.71|65|0 +1.3.6.1.2.1.5.30.1.4.2.72|65|0 +1.3.6.1.2.1.5.30.1.4.2.73|65|0 +1.3.6.1.2.1.5.30.1.4.2.74|65|0 +1.3.6.1.2.1.5.30.1.4.2.75|65|0 +1.3.6.1.2.1.5.30.1.4.2.76|65|0 +1.3.6.1.2.1.5.30.1.4.2.77|65|0 +1.3.6.1.2.1.5.30.1.4.2.78|65|0 +1.3.6.1.2.1.5.30.1.4.2.79|65|0 +1.3.6.1.2.1.5.30.1.4.2.80|65|0 +1.3.6.1.2.1.5.30.1.4.2.81|65|0 +1.3.6.1.2.1.5.30.1.4.2.82|65|0 +1.3.6.1.2.1.5.30.1.4.2.83|65|0 +1.3.6.1.2.1.5.30.1.4.2.84|65|0 +1.3.6.1.2.1.5.30.1.4.2.85|65|0 +1.3.6.1.2.1.5.30.1.4.2.86|65|0 +1.3.6.1.2.1.5.30.1.4.2.87|65|0 +1.3.6.1.2.1.5.30.1.4.2.88|65|0 +1.3.6.1.2.1.5.30.1.4.2.89|65|0 +1.3.6.1.2.1.5.30.1.4.2.90|65|0 +1.3.6.1.2.1.5.30.1.4.2.91|65|0 +1.3.6.1.2.1.5.30.1.4.2.92|65|0 +1.3.6.1.2.1.5.30.1.4.2.93|65|0 +1.3.6.1.2.1.5.30.1.4.2.94|65|0 +1.3.6.1.2.1.5.30.1.4.2.95|65|0 +1.3.6.1.2.1.5.30.1.4.2.96|65|0 +1.3.6.1.2.1.5.30.1.4.2.97|65|0 +1.3.6.1.2.1.5.30.1.4.2.98|65|0 +1.3.6.1.2.1.5.30.1.4.2.99|65|0 +1.3.6.1.2.1.5.30.1.4.2.100|65|0 +1.3.6.1.2.1.5.30.1.4.2.101|65|0 +1.3.6.1.2.1.5.30.1.4.2.102|65|0 +1.3.6.1.2.1.5.30.1.4.2.103|65|0 +1.3.6.1.2.1.5.30.1.4.2.104|65|0 +1.3.6.1.2.1.5.30.1.4.2.105|65|0 +1.3.6.1.2.1.5.30.1.4.2.106|65|0 +1.3.6.1.2.1.5.30.1.4.2.107|65|0 +1.3.6.1.2.1.5.30.1.4.2.108|65|0 +1.3.6.1.2.1.5.30.1.4.2.109|65|0 +1.3.6.1.2.1.5.30.1.4.2.110|65|0 +1.3.6.1.2.1.5.30.1.4.2.111|65|0 +1.3.6.1.2.1.5.30.1.4.2.112|65|0 +1.3.6.1.2.1.5.30.1.4.2.113|65|0 +1.3.6.1.2.1.5.30.1.4.2.114|65|0 +1.3.6.1.2.1.5.30.1.4.2.115|65|0 +1.3.6.1.2.1.5.30.1.4.2.116|65|0 +1.3.6.1.2.1.5.30.1.4.2.117|65|0 +1.3.6.1.2.1.5.30.1.4.2.118|65|0 +1.3.6.1.2.1.5.30.1.4.2.119|65|0 +1.3.6.1.2.1.5.30.1.4.2.120|65|0 +1.3.6.1.2.1.5.30.1.4.2.121|65|0 +1.3.6.1.2.1.5.30.1.4.2.122|65|0 +1.3.6.1.2.1.5.30.1.4.2.123|65|0 +1.3.6.1.2.1.5.30.1.4.2.124|65|0 +1.3.6.1.2.1.5.30.1.4.2.125|65|0 +1.3.6.1.2.1.5.30.1.4.2.126|65|0 +1.3.6.1.2.1.5.30.1.4.2.127|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.130|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.134|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|0 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.138|65|0 +1.3.6.1.2.1.5.30.1.4.2.139|65|0 +1.3.6.1.2.1.5.30.1.4.2.140|65|0 +1.3.6.1.2.1.5.30.1.4.2.141|65|0 +1.3.6.1.2.1.5.30.1.4.2.142|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.2.144|65|0 +1.3.6.1.2.1.5.30.1.4.2.145|65|0 +1.3.6.1.2.1.5.30.1.4.2.146|65|0 +1.3.6.1.2.1.5.30.1.4.2.147|65|0 +1.3.6.1.2.1.5.30.1.4.2.148|65|0 +1.3.6.1.2.1.5.30.1.4.2.149|65|0 +1.3.6.1.2.1.5.30.1.4.2.150|65|0 +1.3.6.1.2.1.5.30.1.4.2.151|65|0 +1.3.6.1.2.1.5.30.1.4.2.152|65|0 +1.3.6.1.2.1.5.30.1.4.2.153|65|0 +1.3.6.1.2.1.5.30.1.4.2.154|65|0 +1.3.6.1.2.1.5.30.1.4.2.155|65|0 +1.3.6.1.2.1.5.30.1.4.2.156|65|0 +1.3.6.1.2.1.5.30.1.4.2.157|65|0 +1.3.6.1.2.1.5.30.1.4.2.158|65|0 +1.3.6.1.2.1.5.30.1.4.2.159|65|0 +1.3.6.1.2.1.5.30.1.4.2.160|65|0 +1.3.6.1.2.1.5.30.1.4.2.161|65|0 +1.3.6.1.2.1.5.30.1.4.2.162|65|0 +1.3.6.1.2.1.5.30.1.4.2.163|65|0 +1.3.6.1.2.1.5.30.1.4.2.164|65|0 +1.3.6.1.2.1.5.30.1.4.2.165|65|0 +1.3.6.1.2.1.5.30.1.4.2.166|65|0 +1.3.6.1.2.1.5.30.1.4.2.167|65|0 +1.3.6.1.2.1.5.30.1.4.2.168|65|0 +1.3.6.1.2.1.5.30.1.4.2.169|65|0 +1.3.6.1.2.1.5.30.1.4.2.170|65|0 +1.3.6.1.2.1.5.30.1.4.2.171|65|0 +1.3.6.1.2.1.5.30.1.4.2.172|65|0 +1.3.6.1.2.1.5.30.1.4.2.173|65|0 +1.3.6.1.2.1.5.30.1.4.2.174|65|0 +1.3.6.1.2.1.5.30.1.4.2.175|65|0 +1.3.6.1.2.1.5.30.1.4.2.176|65|0 +1.3.6.1.2.1.5.30.1.4.2.177|65|0 +1.3.6.1.2.1.5.30.1.4.2.178|65|0 +1.3.6.1.2.1.5.30.1.4.2.179|65|0 +1.3.6.1.2.1.5.30.1.4.2.180|65|0 +1.3.6.1.2.1.5.30.1.4.2.181|65|0 +1.3.6.1.2.1.5.30.1.4.2.182|65|0 +1.3.6.1.2.1.5.30.1.4.2.183|65|0 +1.3.6.1.2.1.5.30.1.4.2.184|65|0 +1.3.6.1.2.1.5.30.1.4.2.185|65|0 +1.3.6.1.2.1.5.30.1.4.2.186|65|0 +1.3.6.1.2.1.5.30.1.4.2.187|65|0 +1.3.6.1.2.1.5.30.1.4.2.188|65|0 +1.3.6.1.2.1.5.30.1.4.2.189|65|0 +1.3.6.1.2.1.5.30.1.4.2.190|65|0 +1.3.6.1.2.1.5.30.1.4.2.191|65|0 +1.3.6.1.2.1.5.30.1.4.2.192|65|0 +1.3.6.1.2.1.5.30.1.4.2.193|65|0 +1.3.6.1.2.1.5.30.1.4.2.194|65|0 +1.3.6.1.2.1.5.30.1.4.2.195|65|0 +1.3.6.1.2.1.5.30.1.4.2.196|65|0 +1.3.6.1.2.1.5.30.1.4.2.197|65|0 +1.3.6.1.2.1.5.30.1.4.2.198|65|0 +1.3.6.1.2.1.5.30.1.4.2.199|65|0 +1.3.6.1.2.1.5.30.1.4.2.200|65|0 +1.3.6.1.2.1.5.30.1.4.2.201|65|0 +1.3.6.1.2.1.5.30.1.4.2.202|65|0 +1.3.6.1.2.1.5.30.1.4.2.203|65|0 +1.3.6.1.2.1.5.30.1.4.2.204|65|0 +1.3.6.1.2.1.5.30.1.4.2.205|65|0 +1.3.6.1.2.1.5.30.1.4.2.206|65|0 +1.3.6.1.2.1.5.30.1.4.2.207|65|0 +1.3.6.1.2.1.5.30.1.4.2.208|65|0 +1.3.6.1.2.1.5.30.1.4.2.209|65|0 +1.3.6.1.2.1.5.30.1.4.2.210|65|0 +1.3.6.1.2.1.5.30.1.4.2.211|65|0 +1.3.6.1.2.1.5.30.1.4.2.212|65|0 +1.3.6.1.2.1.5.30.1.4.2.213|65|0 +1.3.6.1.2.1.5.30.1.4.2.214|65|0 +1.3.6.1.2.1.5.30.1.4.2.215|65|0 +1.3.6.1.2.1.5.30.1.4.2.216|65|0 +1.3.6.1.2.1.5.30.1.4.2.217|65|0 +1.3.6.1.2.1.5.30.1.4.2.218|65|0 +1.3.6.1.2.1.5.30.1.4.2.219|65|0 +1.3.6.1.2.1.5.30.1.4.2.220|65|0 +1.3.6.1.2.1.5.30.1.4.2.221|65|0 +1.3.6.1.2.1.5.30.1.4.2.222|65|0 +1.3.6.1.2.1.5.30.1.4.2.223|65|0 +1.3.6.1.2.1.5.30.1.4.2.224|65|0 +1.3.6.1.2.1.5.30.1.4.2.225|65|0 +1.3.6.1.2.1.5.30.1.4.2.226|65|0 +1.3.6.1.2.1.5.30.1.4.2.227|65|0 +1.3.6.1.2.1.5.30.1.4.2.228|65|0 +1.3.6.1.2.1.5.30.1.4.2.229|65|0 +1.3.6.1.2.1.5.30.1.4.2.230|65|0 +1.3.6.1.2.1.5.30.1.4.2.231|65|0 +1.3.6.1.2.1.5.30.1.4.2.232|65|0 +1.3.6.1.2.1.5.30.1.4.2.233|65|0 +1.3.6.1.2.1.5.30.1.4.2.234|65|0 +1.3.6.1.2.1.5.30.1.4.2.235|65|0 +1.3.6.1.2.1.5.30.1.4.2.236|65|0 +1.3.6.1.2.1.5.30.1.4.2.237|65|0 +1.3.6.1.2.1.5.30.1.4.2.238|65|0 +1.3.6.1.2.1.5.30.1.4.2.239|65|0 +1.3.6.1.2.1.5.30.1.4.2.240|65|0 +1.3.6.1.2.1.5.30.1.4.2.241|65|0 +1.3.6.1.2.1.5.30.1.4.2.242|65|0 +1.3.6.1.2.1.5.30.1.4.2.243|65|0 +1.3.6.1.2.1.5.30.1.4.2.244|65|0 +1.3.6.1.2.1.5.30.1.4.2.245|65|0 +1.3.6.1.2.1.5.30.1.4.2.246|65|0 +1.3.6.1.2.1.5.30.1.4.2.247|65|0 +1.3.6.1.2.1.5.30.1.4.2.248|65|0 +1.3.6.1.2.1.5.30.1.4.2.249|65|0 +1.3.6.1.2.1.5.30.1.4.2.250|65|0 +1.3.6.1.2.1.5.30.1.4.2.251|65|0 +1.3.6.1.2.1.5.30.1.4.2.252|65|0 +1.3.6.1.2.1.5.30.1.4.2.253|65|0 +1.3.6.1.2.1.5.30.1.4.2.254|65|0 +1.3.6.1.2.1.5.30.1.4.2.255|65|0 +1.3.6.1.2.1.6.1.0|2|5 +1.3.6.1.2.1.6.2.0|2|1000 +1.3.6.1.2.1.6.3.0|2|60000 +1.3.6.1.2.1.6.4.0|2|-1 +1.3.6.1.2.1.6.5.0|65|203 +1.3.6.1.2.1.6.6.0|65|83343 +1.3.6.1.2.1.6.7.0|65|28 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|2395429 +1.3.6.1.2.1.6.11.0|65|2475783 +1.3.6.1.2.1.6.12.0|65|606 +1.3.6.1.2.1.6.13.1.1.10.183.52.100.31572.10.183.37.115.64999|2|5 +1.3.6.1.2.1.6.13.1.1.10.183.52.100.64999.10.183.37.114.27589|2|5 +1.3.6.1.2.1.6.13.1.2.10.183.52.100.31572.10.183.37.115.64999|64x|0ab73464 +1.3.6.1.2.1.6.13.1.2.10.183.52.100.64999.10.183.37.114.27589|64x|0ab73464 +1.3.6.1.2.1.6.13.1.3.10.183.52.100.31572.10.183.37.115.64999|2|31572 +1.3.6.1.2.1.6.13.1.3.10.183.52.100.64999.10.183.37.114.27589|2|64999 +1.3.6.1.2.1.6.13.1.4.10.183.52.100.31572.10.183.37.115.64999|64x|0ab72573 +1.3.6.1.2.1.6.13.1.4.10.183.52.100.64999.10.183.37.114.27589|64x|0ab72572 +1.3.6.1.2.1.6.13.1.5.10.183.52.100.31572.10.183.37.115.64999|2|64999 +1.3.6.1.2.1.6.13.1.5.10.183.52.100.64999.10.183.37.114.27589|2|27589 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|303 +1.3.6.1.2.1.6.17.0|70|2395429 +1.3.6.1.2.1.6.18.0|70|2475783 +1.3.6.1.2.1.6.19.1.7.1.4.10.183.52.100.31572.1.4.10.183.37.115.64999|2|5 +1.3.6.1.2.1.6.19.1.7.1.4.10.183.52.100.64999.1.4.10.183.37.114.27589|2|5 +1.3.6.1.2.1.6.19.1.8.1.4.10.183.52.100.31572.1.4.10.183.37.115.64999|66|84 +1.3.6.1.2.1.6.19.1.8.1.4.10.183.52.100.64999.1.4.10.183.37.114.27589|66|84 +1.3.6.1.2.1.6.20.1.4.0.0.443|66|329 +1.3.6.1.2.1.6.20.1.4.0.0.21111|66|329 +1.3.6.1.2.1.6.20.1.4.0.0.64999|66|84 +1.3.6.1.2.1.7.1.0|65|2601922 +1.3.6.1.2.1.7.2.0|65|693 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|2616863 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.123|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.161|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.162|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.1645|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.1646|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.54040|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.54804|64x|0ab73464 +1.3.6.1.2.1.7.5.1.1.10.183.52.100.60742|64x|0ab73464 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.123|2|123 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.161|2|161 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.162|2|162 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.1645|2|1645 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.1646|2|1646 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.54040|2|54040 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.54804|2|54804 +1.3.6.1.2.1.7.5.1.2.10.183.52.100.60742|2|60742 +1.3.6.1.2.1.7.7.1.8.0.0.123.0.0.123.1|66|3 +1.3.6.1.2.1.7.7.1.8.0.0.161.0.0.0.1|66|737 +1.3.6.1.2.1.7.7.1.8.0.0.162.0.0.0.1|66|737 +1.3.6.1.2.1.7.7.1.8.0.0.1645.0.0.0.1|66|740 +1.3.6.1.2.1.7.7.1.8.0.0.1646.0.0.0.1|66|740 +1.3.6.1.2.1.7.7.1.8.0.0.54804.0.0.0.1|66|649 +1.3.6.1.2.1.7.7.1.8.0.0.56177.0.0.0.1|66|737 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.123.1.4.0.0.0.0.123.1|66|3 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.161.1.4.10.183.37.87.55630.1|66|649 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.162.1.4.0.0.0.0.0.1|66|649 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.1645.1.4.0.0.0.0.0.1|66|740 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.1646.1.4.0.0.0.0.0.1|66|740 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.54040.1.4.10.183.18.25.514.1|66|635 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.54804.1.4.0.0.0.0.0.1|66|649 +1.3.6.1.2.1.7.7.1.8.1.4.10.183.52.100.60742.1.4.10.183.37.153.2055.1|66|348 +1.3.6.1.2.1.7.8.0|70|2601957 +1.3.6.1.2.1.7.9.0|70|2616896 +1.3.6.1.2.1.10.7.2.1.1.1|2|1 +1.3.6.1.2.1.10.7.2.1.1.2|2|2 +1.3.6.1.2.1.10.7.2.1.1.3|2|3 +1.3.6.1.2.1.10.7.2.1.1.4|2|4 +1.3.6.1.2.1.10.7.2.1.1.5|2|5 +1.3.6.1.2.1.10.7.2.1.1.6|2|6 +1.3.6.1.2.1.10.7.2.1.1.7|2|7 +1.3.6.1.2.1.10.7.2.1.2.1|65|0 +1.3.6.1.2.1.10.7.2.1.2.2|65|0 +1.3.6.1.2.1.10.7.2.1.2.3|65|0 +1.3.6.1.2.1.10.7.2.1.2.4|65|0 +1.3.6.1.2.1.10.7.2.1.2.5|65|4237787760 +1.3.6.1.2.1.10.7.2.1.2.6|65|4237787760 +1.3.6.1.2.1.10.7.2.1.2.7|65|0 +1.3.6.1.2.1.10.7.2.1.3.1|65|0 +1.3.6.1.2.1.10.7.2.1.3.2|65|0 +1.3.6.1.2.1.10.7.2.1.3.3|65|0 +1.3.6.1.2.1.10.7.2.1.3.4|65|0 +1.3.6.1.2.1.10.7.2.1.3.5|65|4731288 +1.3.6.1.2.1.10.7.2.1.3.6|65|4742696 +1.3.6.1.2.1.10.7.2.1.3.7|65|0 +1.3.6.1.2.1.10.7.2.1.4.1|65|0 +1.3.6.1.2.1.10.7.2.1.4.2|65|0 +1.3.6.1.2.1.10.7.2.1.4.3|65|0 +1.3.6.1.2.1.10.7.2.1.4.4|65|0 +1.3.6.1.2.1.10.7.2.1.4.5|65|0 +1.3.6.1.2.1.10.7.2.1.4.6|65|0 +1.3.6.1.2.1.10.7.2.1.4.7|65|0 +1.3.6.1.2.1.10.7.2.1.5.1|65|0 +1.3.6.1.2.1.10.7.2.1.5.2|65|0 +1.3.6.1.2.1.10.7.2.1.5.3|65|0 +1.3.6.1.2.1.10.7.2.1.5.4|65|0 +1.3.6.1.2.1.10.7.2.1.5.5|65|524352 +1.3.6.1.2.1.10.7.2.1.5.6|65|524352 +1.3.6.1.2.1.10.7.2.1.5.7|65|0 +1.3.6.1.2.1.10.7.2.1.6.1|65|0 +1.3.6.1.2.1.10.7.2.1.6.2|65|0 +1.3.6.1.2.1.10.7.2.1.6.3|65|0 +1.3.6.1.2.1.10.7.2.1.6.4|65|0 +1.3.6.1.2.1.10.7.2.1.6.5|65|1073741824 +1.3.6.1.2.1.10.7.2.1.6.6|65|1090519040 +1.3.6.1.2.1.10.7.2.1.6.7|65|0 +1.3.6.1.2.1.10.7.2.1.7.1|65|0 +1.3.6.1.2.1.10.7.2.1.7.2|65|0 +1.3.6.1.2.1.10.7.2.1.7.3|65|0 +1.3.6.1.2.1.10.7.2.1.7.4|65|0 +1.3.6.1.2.1.10.7.2.1.7.5|65|0 +1.3.6.1.2.1.10.7.2.1.7.6|65|0 +1.3.6.1.2.1.10.7.2.1.7.7|65|0 +1.3.6.1.2.1.10.7.2.1.8.1|65|0 +1.3.6.1.2.1.10.7.2.1.8.2|65|0 +1.3.6.1.2.1.10.7.2.1.8.3|65|0 +1.3.6.1.2.1.10.7.2.1.8.4|65|0 +1.3.6.1.2.1.10.7.2.1.8.5|65|0 +1.3.6.1.2.1.10.7.2.1.8.6|65|0 +1.3.6.1.2.1.10.7.2.1.8.7|65|0 +1.3.6.1.2.1.10.7.2.1.9.1|65|0 +1.3.6.1.2.1.10.7.2.1.9.2|65|0 +1.3.6.1.2.1.10.7.2.1.9.3|65|0 +1.3.6.1.2.1.10.7.2.1.9.4|65|0 +1.3.6.1.2.1.10.7.2.1.9.5|65|1803485184 +1.3.6.1.2.1.10.7.2.1.9.6|65|1803485184 +1.3.6.1.2.1.10.7.2.1.9.7|65|0 +1.3.6.1.2.1.10.7.2.1.10.1|65|0 +1.3.6.1.2.1.10.7.2.1.10.2|65|0 +1.3.6.1.2.1.10.7.2.1.10.3|65|0 +1.3.6.1.2.1.10.7.2.1.10.4|65|0 +1.3.6.1.2.1.10.7.2.1.10.5|65|0 +1.3.6.1.2.1.10.7.2.1.10.6|65|0 +1.3.6.1.2.1.10.7.2.1.10.7|65|0 +1.3.6.1.2.1.10.7.2.1.11.1|65|0 +1.3.6.1.2.1.10.7.2.1.11.2|65|0 +1.3.6.1.2.1.10.7.2.1.11.3|65|0 +1.3.6.1.2.1.10.7.2.1.11.4|65|0 +1.3.6.1.2.1.10.7.2.1.11.5|65|1803485184 +1.3.6.1.2.1.10.7.2.1.11.6|65|1803485184 +1.3.6.1.2.1.10.7.2.1.11.7|65|0 +1.3.6.1.2.1.10.7.2.1.13.1|65|0 +1.3.6.1.2.1.10.7.2.1.13.2|65|0 +1.3.6.1.2.1.10.7.2.1.13.3|65|0 +1.3.6.1.2.1.10.7.2.1.13.4|65|0 +1.3.6.1.2.1.10.7.2.1.13.5|65|2924806144 +1.3.6.1.2.1.10.7.2.1.13.6|65|2924806144 +1.3.6.1.2.1.10.7.2.1.13.7|65|0 +1.3.6.1.2.1.10.7.2.1.16.1|65|0 +1.3.6.1.2.1.10.7.2.1.16.2|65|0 +1.3.6.1.2.1.10.7.2.1.16.3|65|0 +1.3.6.1.2.1.10.7.2.1.16.4|65|0 +1.3.6.1.2.1.10.7.2.1.16.5|65|4723264 +1.3.6.1.2.1.10.7.2.1.16.6|65|4734088 +1.3.6.1.2.1.10.7.2.1.16.7|65|0 +1.3.6.1.2.1.10.7.2.1.18.1|65|0 +1.3.6.1.2.1.10.7.2.1.18.2|65|0 +1.3.6.1.2.1.10.7.2.1.18.3|65|0 +1.3.6.1.2.1.10.7.2.1.18.4|65|0 +1.3.6.1.2.1.10.7.2.1.18.5|65|4731288 +1.3.6.1.2.1.10.7.2.1.18.6|65|4742696 +1.3.6.1.2.1.10.7.2.1.18.7|65|0 +1.3.6.1.2.1.10.7.2.1.19.1|2|1 +1.3.6.1.2.1.10.7.2.1.19.2|2|1 +1.3.6.1.2.1.10.7.2.1.19.3|2|1 +1.3.6.1.2.1.10.7.2.1.19.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.7|2|1 +1.3.6.1.2.1.10.7.10.1.1.1|2|1 +1.3.6.1.2.1.10.7.10.1.1.2|2|1 +1.3.6.1.2.1.10.7.10.1.1.3|2|1 +1.3.6.1.2.1.10.7.10.1.1.4|2|1 +1.3.6.1.2.1.10.7.10.1.1.5|2|1 +1.3.6.1.2.1.10.7.10.1.1.6|2|1 +1.3.6.1.2.1.10.7.10.1.1.7|2|1 +1.3.6.1.2.1.10.7.10.1.2.1|2|1 +1.3.6.1.2.1.10.7.10.1.2.2|2|1 +1.3.6.1.2.1.10.7.10.1.2.3|2|1 +1.3.6.1.2.1.10.7.10.1.2.4|2|1 +1.3.6.1.2.1.10.7.10.1.2.5|2|1 +1.3.6.1.2.1.10.7.10.1.2.6|2|1 +1.3.6.1.2.1.10.7.10.1.2.7|2|1 +1.3.6.1.2.1.10.7.10.1.3.1|65|0 +1.3.6.1.2.1.10.7.10.1.3.2|65|0 +1.3.6.1.2.1.10.7.10.1.3.3|65|0 +1.3.6.1.2.1.10.7.10.1.3.4|65|0 +1.3.6.1.2.1.10.7.10.1.3.5|65|0 +1.3.6.1.2.1.10.7.10.1.3.6|65|0 +1.3.6.1.2.1.10.7.10.1.3.7|65|0 +1.3.6.1.2.1.10.7.10.1.4.1|65|0 +1.3.6.1.2.1.10.7.10.1.4.2|65|0 +1.3.6.1.2.1.10.7.10.1.4.3|65|0 +1.3.6.1.2.1.10.7.10.1.4.4|65|0 +1.3.6.1.2.1.10.7.10.1.4.5|65|0 +1.3.6.1.2.1.10.7.10.1.4.6|65|0 +1.3.6.1.2.1.10.7.10.1.4.7|65|0 +1.3.6.1.2.1.10.7.11.1.1.5|70|9223512138630791792 +1.3.6.1.2.1.10.7.11.1.1.6|70|9223512138630791792 +1.3.6.1.2.1.10.7.11.1.2.5|70|0 +1.3.6.1.2.1.10.7.11.1.2.6|70|0 +1.3.6.1.2.1.10.7.11.1.3.5|70|0 +1.3.6.1.2.1.10.7.11.1.3.6|70|0 +1.3.6.1.2.1.10.7.11.1.4.5|70|0 +1.3.6.1.2.1.10.7.11.1.4.6|70|0 +1.3.6.1.2.1.10.7.11.1.5.5|70|0 +1.3.6.1.2.1.10.7.11.1.5.6|70|0 +1.3.6.1.2.1.10.7.11.1.6.5|70|0 +1.3.6.1.2.1.10.7.11.1.6.6|70|0 +1.3.6.1.2.1.10.20.1.3.1.0|2|1 +1.3.6.1.2.1.10.20.1.4.1.0|2|1 +1.3.6.1.2.1.10.21.1.1.1.0|2|2 +1.3.6.1.2.1.10.21.1.1.2.0|2|2 +1.3.6.1.2.1.10.21.1.4.1.0|2|500 +1.3.6.1.2.1.10.21.1.4.2.0|2|15 +1.3.6.1.2.1.10.32.4.1.0|2|2 +1.3.6.1.2.1.10.33.1.0|2|0 +1.3.6.1.2.1.10.39.1.1.2.0|2|3 +1.3.6.1.2.1.10.166.2.1.1.1.2.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.3.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.4.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.5.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.6.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.7.0|66|0 +1.3.6.1.2.1.10.166.2.1.1.1.8.0|4x|80 +1.3.6.1.2.1.10.166.2.1.2.1.1.0|66|0 +1.3.6.1.2.1.10.166.2.1.2.1.2.0|65|0 +1.3.6.1.2.1.10.166.2.1.2.1.3.0|66|0 +1.3.6.1.2.1.10.166.2.1.2.1.4.0|65|0 +1.3.6.1.2.1.10.166.2.1.3.0|4| +1.3.6.1.2.1.10.166.2.1.6.0|4| +1.3.6.1.2.1.10.166.2.1.9.0|4| +1.3.6.1.2.1.10.166.2.1.11.0|66|6 +1.3.6.1.2.1.10.166.2.1.12.0|4| +1.3.6.1.2.1.10.166.2.1.15.0|2|2 +1.3.6.1.2.1.10.166.3.1.1.0|66|0 +1.3.6.1.2.1.10.166.3.1.2.0|66|0 +1.3.6.1.2.1.10.166.3.1.3.0|4x|00 +1.3.6.1.2.1.10.166.3.1.4.0|66|65535 +1.3.6.1.2.1.10.166.3.1.5.0|66|0 +1.3.6.1.2.1.10.166.3.2.1.0|66|0 +1.3.6.1.2.1.10.166.3.2.3.0|66|0 +1.3.6.1.2.1.10.166.3.2.5.0|66|0 +1.3.6.1.2.1.10.166.3.2.11.0|2|2 +1.3.6.1.2.1.10.166.4.1.1.1.0|4x|00000000 +1.3.6.1.2.1.10.166.4.1.1.2.0|2|5 +1.3.6.1.2.1.10.166.4.1.2.1.0|67|0 +1.3.6.1.2.1.10.166.4.1.2.2.0|66|0 +1.3.6.1.2.1.10.166.4.1.3.1.0|67|0 +1.3.6.1.2.1.10.166.11.1.1.1.0|66|1 +1.3.6.1.2.1.10.166.11.1.1.2.0|66|0 +1.3.6.1.2.1.10.166.11.1.1.3.0|66|1 +1.3.6.1.2.1.10.166.11.1.1.4.0|2|2 +1.3.6.1.2.1.10.166.11.1.1.5.0|66|0 +1.3.6.1.2.1.10.166.11.1.1.6.0|66|0 +1.3.6.1.2.1.10.166.11.1.1.7.0|66|0 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.9.77.103.109.116.45.105.110.116.102.7|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.3.9.77.103.109.116.45.105.110.116.102.7|4x|80 +1.3.6.1.2.1.10.166.11.1.2.1.1.4.9.77.103.109.116.45.105.110.116.102.7|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.5.9.77.103.109.116.45.105.110.116.102.7|2|1 +1.3.6.1.2.1.10.166.11.1.2.2.1.2.9.77.103.109.116.45.105.110.116.102|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.3.9.77.103.109.116.45.105.110.116.102|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.4.9.77.103.109.116.45.105.110.116.102|4| +1.3.6.1.2.1.10.166.11.1.2.2.1.5.9.77.103.109.116.45.105.110.116.102|67|1538 +1.3.6.1.2.1.10.166.11.1.2.2.1.6.9.77.103.109.116.45.105.110.116.102|2|2 +1.3.6.1.2.1.10.166.11.1.2.2.1.7.9.77.103.109.116.45.105.110.116.102|66|0 +1.3.6.1.2.1.10.166.11.1.2.2.1.8.9.77.103.109.116.45.105.110.116.102|66|1 +1.3.6.1.2.1.10.166.11.1.2.2.1.9.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.2.1.10.166.11.1.2.2.1.10.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.2.1.10.166.11.1.2.2.1.11.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.2.1.10.166.11.1.2.2.1.12.9.77.103.109.116.45.105.110.116.102|67|1652 +1.3.6.1.2.1.10.166.11.1.2.2.1.13.9.77.103.109.116.45.105.110.116.102|2|1 +1.3.6.1.2.1.10.166.11.1.2.2.1.14.9.77.103.109.116.45.105.110.116.102|2|2 +1.3.6.1.2.1.10.166.11.1.2.2.1.15.9.77.103.109.116.45.105.110.116.102|2|2 +1.3.6.1.2.1.10.166.11.1.2.6.1.1.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.2.1.10.166.11.1.2.6.1.2.9.77.103.109.116.45.105.110.116.102|67|0 +1.3.6.1.2.1.10.166.11.1.3.1.1.1.9.77.103.109.116.45.105.110.116.102|65|1 +1.3.6.1.2.1.10.166.11.1.3.1.1.2.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.2.1.10.166.11.1.3.1.1.3.9.77.103.109.116.45.105.110.116.102|66|1 +1.3.6.1.2.1.10.166.11.1.3.1.1.4.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.2.1.10.166.11.1.3.1.1.5.9.77.103.109.116.45.105.110.116.102|67|0 +1.3.6.1.2.1.10.166.11.1.4.1.1.7.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|9 +1.3.6.1.2.1.10.166.11.1.4.1.1.8.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|3 +1.3.6.1.2.1.10.166.11.1.4.1.1.9.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|2 +1.3.6.1.2.1.10.166.11.1.4.1.1.10.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|66|4294967 +1.3.6.1.2.1.10.166.11.1.4.1.1.11.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|66|0 +1.3.6.1.2.1.10.166.11.1.4.1.1.12.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|0 +1.3.6.1.2.1.10.166.11.1.4.1.1.13.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|-1 +1.3.6.1.2.1.10.166.11.1.4.1.1.14.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|-1 +1.3.6.1.2.1.10.166.11.1.4.1.1.15.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|-1 +1.3.6.1.2.1.10.166.11.1.4.1.1.16.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|-1 +1.3.6.1.2.1.10.166.11.1.4.1.1.17.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|4| +1.3.6.1.2.1.10.166.11.1.4.1.1.18.9.77.103.109.116.45.105.110.116.102.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.2.0.0.0.0|2|1 +1.3.6.1.2.1.11.1.0|65|2564208 +1.3.6.1.2.1.11.2.0|65|2416124 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|148084 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|2754244 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|649548 +1.3.6.1.2.1.11.16.0|65|2708 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|2416148 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.13.3.1.1.1.1|2|1 +1.3.6.1.2.1.13.3.1.1.1.4|2|4 +1.3.6.1.2.1.13.3.1.1.1.5|2|5 +1.3.6.1.2.1.13.3.1.1.1.6|2|6 +1.3.6.1.2.1.13.3.1.1.1.7|2|7 +1.3.6.1.2.1.13.3.1.1.1.8|2|8 +1.3.6.1.2.1.13.3.1.1.1.9|2|9 +1.3.6.1.2.1.13.3.1.1.1.10|2|10 +1.3.6.1.2.1.13.3.1.1.1.11|2|11 +1.3.6.1.2.1.13.3.1.1.1.12|2|12 +1.3.6.1.2.1.13.3.1.1.1.13|2|13 +1.3.6.1.2.1.13.3.1.1.1.16|2|16 +1.3.6.1.2.1.13.3.1.1.1.17|2|17 +1.3.6.1.2.1.13.3.1.1.1.18|2|18 +1.3.6.1.2.1.13.3.1.1.1.19|2|19 +1.3.6.1.2.1.13.3.1.1.1.20|2|20 +1.3.6.1.2.1.13.3.1.1.1.21|2|21 +1.3.6.1.2.1.13.3.1.1.1.22|2|22 +1.3.6.1.2.1.13.3.1.1.1.23|2|23 +1.3.6.1.2.1.13.3.1.1.1.24|2|24 +1.3.6.1.2.1.13.3.1.1.1.25|2|25 +1.3.6.1.2.1.13.3.1.1.1.26|2|26 +1.3.6.1.2.1.13.3.1.1.1.27|2|27 +1.3.6.1.2.1.13.3.1.1.1.28|2|28 +1.3.6.1.2.1.13.3.1.1.1.29|2|29 +1.3.6.1.2.1.13.3.1.1.1.30|2|30 +1.3.6.1.2.1.13.3.1.1.1.31|2|31 +1.3.6.1.2.1.13.3.1.1.1.32|2|32 +1.3.6.1.2.1.13.3.1.1.1.33|2|33 +1.3.6.1.2.1.13.3.1.1.1.34|2|34 +1.3.6.1.2.1.13.3.1.1.1.35|2|35 +1.3.6.1.2.1.13.3.1.1.1.36|2|36 +1.3.6.1.2.1.13.3.1.1.1.37|2|37 +1.3.6.1.2.1.13.3.1.1.1.38|2|38 +1.3.6.1.2.1.13.3.1.1.1.39|2|39 +1.3.6.1.2.1.13.3.1.1.1.40|2|40 +1.3.6.1.2.1.13.3.1.1.1.41|2|41 +1.3.6.1.2.1.13.3.1.1.1.42|2|42 +1.3.6.1.2.1.13.3.1.1.1.43|2|43 +1.3.6.1.2.1.13.3.1.1.1.44|2|44 +1.3.6.1.2.1.13.3.1.1.1.45|2|45 +1.3.6.1.2.1.13.3.1.1.1.46|2|46 +1.3.6.1.2.1.13.3.1.1.1.47|2|47 +1.3.6.1.2.1.13.3.1.1.1.48|2|48 +1.3.6.1.2.1.13.3.1.1.1.49|2|49 +1.3.6.1.2.1.13.3.1.1.1.50|2|50 +1.3.6.1.2.1.13.3.1.1.1.51|2|51 +1.3.6.1.2.1.13.3.1.1.1.52|2|52 +1.3.6.1.2.1.13.3.1.1.1.53|2|53 +1.3.6.1.2.1.13.3.1.1.1.54|2|54 +1.3.6.1.2.1.13.3.1.1.1.55|2|55 +1.3.6.1.2.1.13.3.1.1.1.56|2|56 +1.3.6.1.2.1.13.3.1.1.1.57|2|57 +1.3.6.1.2.1.13.3.1.1.1.58|2|58 +1.3.6.1.2.1.13.3.1.1.1.59|2|59 +1.3.6.1.2.1.13.3.1.1.1.60|2|60 +1.3.6.1.2.1.13.3.1.1.1.61|2|61 +1.3.6.1.2.1.13.3.1.1.1.62|2|62 +1.3.6.1.2.1.13.3.1.1.1.63|2|63 +1.3.6.1.2.1.13.3.1.1.1.64|2|64 +1.3.6.1.2.1.13.3.1.1.1.65|2|65 +1.3.6.1.2.1.13.3.1.1.1.66|2|66 +1.3.6.1.2.1.13.3.1.1.1.67|2|67 +1.3.6.1.2.1.13.3.1.1.1.68|2|68 +1.3.6.1.2.1.13.3.1.1.1.69|2|69 +1.3.6.1.2.1.13.3.1.1.1.70|2|70 +1.3.6.1.2.1.13.3.1.1.1.71|2|71 +1.3.6.1.2.1.13.3.1.1.1.72|2|72 +1.3.6.1.2.1.13.3.1.1.1.73|2|73 +1.3.6.1.2.1.13.3.1.1.2.1|4|Null0 +1.3.6.1.2.1.13.3.1.1.2.4|4x|566f49502d4e756c6c30 +1.3.6.1.2.1.13.3.1.1.2.5|4x|4c492d4e756c6c30 +1.3.6.1.2.1.13.3.1.1.2.6|4|GigabitEthernet0 +1.3.6.1.2.1.13.3.1.1.2.7|4|LIIN0 +1.3.6.1.2.1.13.3.1.1.2.8|4x|54776f4769676162697445746865726e6574302f302f30 +1.3.6.1.2.1.13.3.1.1.2.9|4x|54776f4769676162697445746865726e6574302f302f31 +1.3.6.1.2.1.13.3.1.1.2.10|4x|54776f4769676162697445746865726e6574302f302f32 +1.3.6.1.2.1.13.3.1.1.2.11|4x|54776f4769676162697445746865726e6574302f302f33 +1.3.6.1.2.1.13.3.1.1.2.12|4x|54656e4769676162697445746865726e6574302f312f30 +1.3.6.1.2.1.13.3.1.1.2.13|4x|54656e4769676162697445746865726e6574302f312f31 +1.3.6.1.2.1.13.3.1.1.2.16|4|Vlan1 +1.3.6.1.2.1.13.3.1.1.2.17|4|Vlan52 +1.3.6.1.2.1.13.3.1.1.2.18|4x|506f72742d6368616e6e656c39 +1.3.6.1.2.1.13.3.1.1.2.19|4|Capwap1 +1.3.6.1.2.1.13.3.1.1.2.20|4|Capwap2 +1.3.6.1.2.1.13.3.1.1.2.21|4|Capwap3 +1.3.6.1.2.1.13.3.1.1.2.22|4|Capwap4 +1.3.6.1.2.1.13.3.1.1.2.23|4|Capwap5 +1.3.6.1.2.1.13.3.1.1.2.24|4|Capwap6 +1.3.6.1.2.1.13.3.1.1.2.25|4|Capwap7 +1.3.6.1.2.1.13.3.1.1.2.26|4|Capwap8 +1.3.6.1.2.1.13.3.1.1.2.27|4|Capwap9 +1.3.6.1.2.1.13.3.1.1.2.28|4|Capwap10 +1.3.6.1.2.1.13.3.1.1.2.29|4|Capwap11 +1.3.6.1.2.1.13.3.1.1.2.30|4|Capwap12 +1.3.6.1.2.1.13.3.1.1.2.31|4|Capwap13 +1.3.6.1.2.1.13.3.1.1.2.32|4|Capwap14 +1.3.6.1.2.1.13.3.1.1.2.33|4|Capwap15 +1.3.6.1.2.1.13.3.1.1.2.34|4|Capwap16 +1.3.6.1.2.1.13.3.1.1.2.35|4|Capwap17 +1.3.6.1.2.1.13.3.1.1.2.36|4|Capwap18 +1.3.6.1.2.1.13.3.1.1.2.37|4|Capwap19 +1.3.6.1.2.1.13.3.1.1.2.38|4|Capwap20 +1.3.6.1.2.1.13.3.1.1.2.39|4|Capwap21 +1.3.6.1.2.1.13.3.1.1.2.40|4|Capwap22 +1.3.6.1.2.1.13.3.1.1.2.41|4|Capwap23 +1.3.6.1.2.1.13.3.1.1.2.42|4|Capwap24 +1.3.6.1.2.1.13.3.1.1.2.43|4|Capwap25 +1.3.6.1.2.1.13.3.1.1.2.44|4|Capwap26 +1.3.6.1.2.1.13.3.1.1.2.45|4|Capwap27 +1.3.6.1.2.1.13.3.1.1.2.46|4|Capwap28 +1.3.6.1.2.1.13.3.1.1.2.47|4|Capwap29 +1.3.6.1.2.1.13.3.1.1.2.48|4|Capwap30 +1.3.6.1.2.1.13.3.1.1.2.49|4|Capwap31 +1.3.6.1.2.1.13.3.1.1.2.50|4|Capwap32 +1.3.6.1.2.1.13.3.1.1.2.51|4|Capwap33 +1.3.6.1.2.1.13.3.1.1.2.52|4|Capwap34 +1.3.6.1.2.1.13.3.1.1.2.53|4|Capwap35 +1.3.6.1.2.1.13.3.1.1.2.54|4|Capwap36 +1.3.6.1.2.1.13.3.1.1.2.55|4|Capwap37 +1.3.6.1.2.1.13.3.1.1.2.56|4|Capwap38 +1.3.6.1.2.1.13.3.1.1.2.57|4|Capwap39 +1.3.6.1.2.1.13.3.1.1.2.58|4|Capwap40 +1.3.6.1.2.1.13.3.1.1.2.59|4|Capwap41 +1.3.6.1.2.1.13.3.1.1.2.60|4|Capwap42 +1.3.6.1.2.1.13.3.1.1.2.61|4|Capwap43 +1.3.6.1.2.1.13.3.1.1.2.62|4|Capwap44 +1.3.6.1.2.1.13.3.1.1.2.63|4|Capwap45 +1.3.6.1.2.1.13.3.1.1.2.64|4|Capwap46 +1.3.6.1.2.1.13.3.1.1.2.65|4|Capwap47 +1.3.6.1.2.1.13.3.1.1.2.66|4|Capwap48 +1.3.6.1.2.1.13.3.1.1.2.67|4|Capwap49 +1.3.6.1.2.1.13.3.1.1.2.68|4|Capwap50 +1.3.6.1.2.1.13.3.1.1.2.69|4|Capwap51 +1.3.6.1.2.1.13.3.1.1.2.70|4|Capwap52 +1.3.6.1.2.1.13.3.1.1.2.71|4|Capwap53 +1.3.6.1.2.1.13.3.1.1.2.72|4|Capwap54 +1.3.6.1.2.1.13.3.1.1.2.73|4|Capwap55 +1.3.6.1.2.1.13.3.1.1.3.1|2|1 +1.3.6.1.2.1.13.3.1.1.3.4|2|1 +1.3.6.1.2.1.13.3.1.1.3.5|2|1 +1.3.6.1.2.1.13.3.1.1.3.6|2|1 +1.3.6.1.2.1.13.3.1.1.3.7|2|1 +1.3.6.1.2.1.13.3.1.1.3.8|2|1 +1.3.6.1.2.1.13.3.1.1.3.9|2|1 +1.3.6.1.2.1.13.3.1.1.3.10|2|1 +1.3.6.1.2.1.13.3.1.1.3.11|2|1 +1.3.6.1.2.1.13.3.1.1.3.12|2|1 +1.3.6.1.2.1.13.3.1.1.3.13|2|1 +1.3.6.1.2.1.13.3.1.1.3.16|2|1 +1.3.6.1.2.1.13.3.1.1.3.17|2|1 +1.3.6.1.2.1.13.3.1.1.3.18|2|1 +1.3.6.1.2.1.13.3.1.1.3.19|2|1 +1.3.6.1.2.1.13.3.1.1.3.20|2|1 +1.3.6.1.2.1.13.3.1.1.3.21|2|1 +1.3.6.1.2.1.13.3.1.1.3.22|2|1 +1.3.6.1.2.1.13.3.1.1.3.23|2|1 +1.3.6.1.2.1.13.3.1.1.3.24|2|1 +1.3.6.1.2.1.13.3.1.1.3.25|2|1 +1.3.6.1.2.1.13.3.1.1.3.26|2|1 +1.3.6.1.2.1.13.3.1.1.3.27|2|1 +1.3.6.1.2.1.13.3.1.1.3.28|2|1 +1.3.6.1.2.1.13.3.1.1.3.29|2|1 +1.3.6.1.2.1.13.3.1.1.3.30|2|1 +1.3.6.1.2.1.13.3.1.1.3.31|2|1 +1.3.6.1.2.1.13.3.1.1.3.32|2|1 +1.3.6.1.2.1.13.3.1.1.3.33|2|1 +1.3.6.1.2.1.13.3.1.1.3.34|2|1 +1.3.6.1.2.1.13.3.1.1.3.35|2|1 +1.3.6.1.2.1.13.3.1.1.3.36|2|1 +1.3.6.1.2.1.13.3.1.1.3.37|2|1 +1.3.6.1.2.1.13.3.1.1.3.38|2|1 +1.3.6.1.2.1.13.3.1.1.3.39|2|1 +1.3.6.1.2.1.13.3.1.1.3.40|2|1 +1.3.6.1.2.1.13.3.1.1.3.41|2|1 +1.3.6.1.2.1.13.3.1.1.3.42|2|1 +1.3.6.1.2.1.13.3.1.1.3.43|2|1 +1.3.6.1.2.1.13.3.1.1.3.44|2|1 +1.3.6.1.2.1.13.3.1.1.3.45|2|1 +1.3.6.1.2.1.13.3.1.1.3.46|2|1 +1.3.6.1.2.1.13.3.1.1.3.47|2|1 +1.3.6.1.2.1.13.3.1.1.3.48|2|1 +1.3.6.1.2.1.13.3.1.1.3.49|2|1 +1.3.6.1.2.1.13.3.1.1.3.50|2|1 +1.3.6.1.2.1.13.3.1.1.3.51|2|1 +1.3.6.1.2.1.13.3.1.1.3.52|2|1 +1.3.6.1.2.1.13.3.1.1.3.53|2|1 +1.3.6.1.2.1.13.3.1.1.3.54|2|1 +1.3.6.1.2.1.13.3.1.1.3.55|2|1 +1.3.6.1.2.1.13.3.1.1.3.56|2|1 +1.3.6.1.2.1.13.3.1.1.3.57|2|1 +1.3.6.1.2.1.13.3.1.1.3.58|2|1 +1.3.6.1.2.1.13.3.1.1.3.59|2|1 +1.3.6.1.2.1.13.3.1.1.3.60|2|1 +1.3.6.1.2.1.13.3.1.1.3.61|2|1 +1.3.6.1.2.1.13.3.1.1.3.62|2|1 +1.3.6.1.2.1.13.3.1.1.3.63|2|1 +1.3.6.1.2.1.13.3.1.1.3.64|2|1 +1.3.6.1.2.1.13.3.1.1.3.65|2|1 +1.3.6.1.2.1.13.3.1.1.3.66|2|1 +1.3.6.1.2.1.13.3.1.1.3.67|2|1 +1.3.6.1.2.1.13.3.1.1.3.68|2|1 +1.3.6.1.2.1.13.3.1.1.3.69|2|1 +1.3.6.1.2.1.13.3.1.1.3.70|2|1 +1.3.6.1.2.1.13.3.1.1.3.71|2|1 +1.3.6.1.2.1.13.3.1.1.3.72|2|1 +1.3.6.1.2.1.13.3.1.1.3.73|2|1 +1.3.6.1.2.1.13.3.1.1.4.1|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.4|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.5|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.6|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.7|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.8|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.9|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.10|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.11|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.12|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.13|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.16|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.17|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.18|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.19|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.20|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.21|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.22|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.23|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.24|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.25|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.26|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.27|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.28|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.29|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.30|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.31|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.32|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.33|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.34|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.35|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.36|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.37|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.38|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.39|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.40|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.41|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.42|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.43|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.44|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.45|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.46|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.47|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.48|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.49|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.50|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.51|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.52|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.53|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.54|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.55|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.56|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.57|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.58|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.59|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.60|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.61|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.62|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.63|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.64|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.65|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.66|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.67|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.68|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.69|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.70|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.71|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.72|4x|0000 +1.3.6.1.2.1.13.3.1.1.4.73|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.1|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.4|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.5|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.6|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.7|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.8|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.9|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.10|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.11|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.12|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.13|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.16|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.17|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.18|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.19|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.20|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.21|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.22|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.23|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.24|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.25|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.26|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.27|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.28|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.29|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.30|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.31|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.32|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.33|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.34|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.35|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.36|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.37|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.38|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.39|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.40|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.41|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.42|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.43|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.44|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.45|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.46|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.47|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.48|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.49|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.50|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.51|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.52|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.53|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.54|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.55|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.56|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.57|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.58|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.59|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.60|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.61|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.62|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.63|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.64|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.65|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.66|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.67|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.68|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.69|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.70|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.71|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.72|4x|0000 +1.3.6.1.2.1.13.3.1.1.5.73|4x|0000 +1.3.6.1.2.1.13.3.1.1.6.1|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.4|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.5|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.6|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.7|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.8|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.9|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.10|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.11|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.12|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.13|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.16|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.17|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.18|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.19|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.20|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.21|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.22|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.23|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.24|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.25|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.26|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.27|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.28|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.29|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.30|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.31|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.32|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.33|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.34|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.35|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.36|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.37|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.38|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.39|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.40|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.41|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.42|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.43|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.44|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.45|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.46|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.47|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.48|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.49|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.50|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.51|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.52|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.53|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.54|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.55|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.56|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.57|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.58|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.59|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.60|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.61|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.62|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.63|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.64|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.65|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.66|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.67|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.68|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.69|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.70|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.71|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.72|4x|000000 +1.3.6.1.2.1.13.3.1.1.6.73|4x|000000 +1.3.6.1.2.1.13.3.1.1.7.1|2|4 +1.3.6.1.2.1.13.3.1.1.7.4|2|2 +1.3.6.1.2.1.13.3.1.1.7.5|2|2 +1.3.6.1.2.1.13.3.1.1.7.6|2|2 +1.3.6.1.2.1.13.3.1.1.7.7|2|2 +1.3.6.1.2.1.13.3.1.1.7.8|2|2 +1.3.6.1.2.1.13.3.1.1.7.9|2|2 +1.3.6.1.2.1.13.3.1.1.7.10|2|2 +1.3.6.1.2.1.13.3.1.1.7.11|2|2 +1.3.6.1.2.1.13.3.1.1.7.12|2|2 +1.3.6.1.2.1.13.3.1.1.7.13|2|2 +1.3.6.1.2.1.13.3.1.1.7.16|2|2 +1.3.6.1.2.1.13.3.1.1.7.17|2|2 +1.3.6.1.2.1.13.3.1.1.7.18|2|2 +1.3.6.1.2.1.13.3.1.1.7.19|2|2 +1.3.6.1.2.1.13.3.1.1.7.20|2|2 +1.3.6.1.2.1.13.3.1.1.7.21|2|2 +1.3.6.1.2.1.13.3.1.1.7.22|2|2 +1.3.6.1.2.1.13.3.1.1.7.23|2|2 +1.3.6.1.2.1.13.3.1.1.7.24|2|2 +1.3.6.1.2.1.13.3.1.1.7.25|2|2 +1.3.6.1.2.1.13.3.1.1.7.26|2|2 +1.3.6.1.2.1.13.3.1.1.7.27|2|2 +1.3.6.1.2.1.13.3.1.1.7.28|2|2 +1.3.6.1.2.1.13.3.1.1.7.29|2|2 +1.3.6.1.2.1.13.3.1.1.7.30|2|2 +1.3.6.1.2.1.13.3.1.1.7.31|2|2 +1.3.6.1.2.1.13.3.1.1.7.32|2|2 +1.3.6.1.2.1.13.3.1.1.7.33|2|2 +1.3.6.1.2.1.13.3.1.1.7.34|2|2 +1.3.6.1.2.1.13.3.1.1.7.35|2|2 +1.3.6.1.2.1.13.3.1.1.7.36|2|2 +1.3.6.1.2.1.13.3.1.1.7.37|2|2 +1.3.6.1.2.1.13.3.1.1.7.38|2|2 +1.3.6.1.2.1.13.3.1.1.7.39|2|2 +1.3.6.1.2.1.13.3.1.1.7.40|2|2 +1.3.6.1.2.1.13.3.1.1.7.41|2|2 +1.3.6.1.2.1.13.3.1.1.7.42|2|2 +1.3.6.1.2.1.13.3.1.1.7.43|2|2 +1.3.6.1.2.1.13.3.1.1.7.44|2|2 +1.3.6.1.2.1.13.3.1.1.7.45|2|2 +1.3.6.1.2.1.13.3.1.1.7.46|2|2 +1.3.6.1.2.1.13.3.1.1.7.47|2|2 +1.3.6.1.2.1.13.3.1.1.7.48|2|2 +1.3.6.1.2.1.13.3.1.1.7.49|2|2 +1.3.6.1.2.1.13.3.1.1.7.50|2|2 +1.3.6.1.2.1.13.3.1.1.7.51|2|2 +1.3.6.1.2.1.13.3.1.1.7.52|2|2 +1.3.6.1.2.1.13.3.1.1.7.53|2|2 +1.3.6.1.2.1.13.3.1.1.7.54|2|2 +1.3.6.1.2.1.13.3.1.1.7.55|2|2 +1.3.6.1.2.1.13.3.1.1.7.56|2|2 +1.3.6.1.2.1.13.3.1.1.7.57|2|2 +1.3.6.1.2.1.13.3.1.1.7.58|2|2 +1.3.6.1.2.1.13.3.1.1.7.59|2|2 +1.3.6.1.2.1.13.3.1.1.7.60|2|2 +1.3.6.1.2.1.13.3.1.1.7.61|2|2 +1.3.6.1.2.1.13.3.1.1.7.62|2|2 +1.3.6.1.2.1.13.3.1.1.7.63|2|2 +1.3.6.1.2.1.13.3.1.1.7.64|2|2 +1.3.6.1.2.1.13.3.1.1.7.65|2|2 +1.3.6.1.2.1.13.3.1.1.7.66|2|2 +1.3.6.1.2.1.13.3.1.1.7.67|2|2 +1.3.6.1.2.1.13.3.1.1.7.68|2|2 +1.3.6.1.2.1.13.3.1.1.7.69|2|2 +1.3.6.1.2.1.13.3.1.1.7.70|2|2 +1.3.6.1.2.1.13.3.1.1.7.71|2|2 +1.3.6.1.2.1.13.3.1.1.7.72|2|2 +1.3.6.1.2.1.13.3.1.1.7.73|2|2 +1.3.6.1.2.1.13.3.1.1.8.1|2|4 +1.3.6.1.2.1.13.3.1.1.8.4|2|4 +1.3.6.1.2.1.13.3.1.1.8.5|2|4 +1.3.6.1.2.1.13.3.1.1.8.6|2|4 +1.3.6.1.2.1.13.3.1.1.8.7|2|4 +1.3.6.1.2.1.13.3.1.1.8.8|2|4 +1.3.6.1.2.1.13.3.1.1.8.9|2|4 +1.3.6.1.2.1.13.3.1.1.8.10|2|4 +1.3.6.1.2.1.13.3.1.1.8.11|2|4 +1.3.6.1.2.1.13.3.1.1.8.12|2|4 +1.3.6.1.2.1.13.3.1.1.8.13|2|4 +1.3.6.1.2.1.13.3.1.1.8.16|2|4 +1.3.6.1.2.1.13.3.1.1.8.17|2|4 +1.3.6.1.2.1.13.3.1.1.8.18|2|4 +1.3.6.1.2.1.13.3.1.1.8.19|2|4 +1.3.6.1.2.1.13.3.1.1.8.20|2|4 +1.3.6.1.2.1.13.3.1.1.8.21|2|4 +1.3.6.1.2.1.13.3.1.1.8.22|2|4 +1.3.6.1.2.1.13.3.1.1.8.23|2|4 +1.3.6.1.2.1.13.3.1.1.8.24|2|4 +1.3.6.1.2.1.13.3.1.1.8.25|2|4 +1.3.6.1.2.1.13.3.1.1.8.26|2|4 +1.3.6.1.2.1.13.3.1.1.8.27|2|4 +1.3.6.1.2.1.13.3.1.1.8.28|2|4 +1.3.6.1.2.1.13.3.1.1.8.29|2|4 +1.3.6.1.2.1.13.3.1.1.8.30|2|4 +1.3.6.1.2.1.13.3.1.1.8.31|2|4 +1.3.6.1.2.1.13.3.1.1.8.32|2|4 +1.3.6.1.2.1.13.3.1.1.8.33|2|4 +1.3.6.1.2.1.13.3.1.1.8.34|2|4 +1.3.6.1.2.1.13.3.1.1.8.35|2|4 +1.3.6.1.2.1.13.3.1.1.8.36|2|4 +1.3.6.1.2.1.13.3.1.1.8.37|2|4 +1.3.6.1.2.1.13.3.1.1.8.38|2|4 +1.3.6.1.2.1.13.3.1.1.8.39|2|4 +1.3.6.1.2.1.13.3.1.1.8.40|2|4 +1.3.6.1.2.1.13.3.1.1.8.41|2|4 +1.3.6.1.2.1.13.3.1.1.8.42|2|4 +1.3.6.1.2.1.13.3.1.1.8.43|2|4 +1.3.6.1.2.1.13.3.1.1.8.44|2|4 +1.3.6.1.2.1.13.3.1.1.8.45|2|4 +1.3.6.1.2.1.13.3.1.1.8.46|2|4 +1.3.6.1.2.1.13.3.1.1.8.47|2|4 +1.3.6.1.2.1.13.3.1.1.8.48|2|4 +1.3.6.1.2.1.13.3.1.1.8.49|2|4 +1.3.6.1.2.1.13.3.1.1.8.50|2|4 +1.3.6.1.2.1.13.3.1.1.8.51|2|4 +1.3.6.1.2.1.13.3.1.1.8.52|2|4 +1.3.6.1.2.1.13.3.1.1.8.53|2|4 +1.3.6.1.2.1.13.3.1.1.8.54|2|4 +1.3.6.1.2.1.13.3.1.1.8.55|2|4 +1.3.6.1.2.1.13.3.1.1.8.56|2|4 +1.3.6.1.2.1.13.3.1.1.8.57|2|4 +1.3.6.1.2.1.13.3.1.1.8.58|2|4 +1.3.6.1.2.1.13.3.1.1.8.59|2|4 +1.3.6.1.2.1.13.3.1.1.8.60|2|4 +1.3.6.1.2.1.13.3.1.1.8.61|2|4 +1.3.6.1.2.1.13.3.1.1.8.62|2|4 +1.3.6.1.2.1.13.3.1.1.8.63|2|4 +1.3.6.1.2.1.13.3.1.1.8.64|2|4 +1.3.6.1.2.1.13.3.1.1.8.65|2|4 +1.3.6.1.2.1.13.3.1.1.8.66|2|4 +1.3.6.1.2.1.13.3.1.1.8.67|2|4 +1.3.6.1.2.1.13.3.1.1.8.68|2|4 +1.3.6.1.2.1.13.3.1.1.8.69|2|4 +1.3.6.1.2.1.13.3.1.1.8.70|2|4 +1.3.6.1.2.1.13.3.1.1.8.71|2|4 +1.3.6.1.2.1.13.3.1.1.8.72|2|4 +1.3.6.1.2.1.13.3.1.1.8.73|2|4 +1.3.6.1.2.1.13.3.1.1.9.1|2|4 +1.3.6.1.2.1.13.3.1.1.9.4|2|4 +1.3.6.1.2.1.13.3.1.1.9.5|2|4 +1.3.6.1.2.1.13.3.1.1.9.6|2|4 +1.3.6.1.2.1.13.3.1.1.9.7|2|4 +1.3.6.1.2.1.13.3.1.1.9.8|2|4 +1.3.6.1.2.1.13.3.1.1.9.9|2|4 +1.3.6.1.2.1.13.3.1.1.9.10|2|4 +1.3.6.1.2.1.13.3.1.1.9.11|2|4 +1.3.6.1.2.1.13.3.1.1.9.12|2|4 +1.3.6.1.2.1.13.3.1.1.9.13|2|4 +1.3.6.1.2.1.13.3.1.1.9.16|2|4 +1.3.6.1.2.1.13.3.1.1.9.17|2|4 +1.3.6.1.2.1.13.3.1.1.9.18|2|4 +1.3.6.1.2.1.13.3.1.1.9.19|2|4 +1.3.6.1.2.1.13.3.1.1.9.20|2|4 +1.3.6.1.2.1.13.3.1.1.9.21|2|4 +1.3.6.1.2.1.13.3.1.1.9.22|2|4 +1.3.6.1.2.1.13.3.1.1.9.23|2|4 +1.3.6.1.2.1.13.3.1.1.9.24|2|4 +1.3.6.1.2.1.13.3.1.1.9.25|2|4 +1.3.6.1.2.1.13.3.1.1.9.26|2|4 +1.3.6.1.2.1.13.3.1.1.9.27|2|4 +1.3.6.1.2.1.13.3.1.1.9.28|2|4 +1.3.6.1.2.1.13.3.1.1.9.29|2|4 +1.3.6.1.2.1.13.3.1.1.9.30|2|4 +1.3.6.1.2.1.13.3.1.1.9.31|2|4 +1.3.6.1.2.1.13.3.1.1.9.32|2|4 +1.3.6.1.2.1.13.3.1.1.9.33|2|4 +1.3.6.1.2.1.13.3.1.1.9.34|2|4 +1.3.6.1.2.1.13.3.1.1.9.35|2|4 +1.3.6.1.2.1.13.3.1.1.9.36|2|4 +1.3.6.1.2.1.13.3.1.1.9.37|2|4 +1.3.6.1.2.1.13.3.1.1.9.38|2|4 +1.3.6.1.2.1.13.3.1.1.9.39|2|4 +1.3.6.1.2.1.13.3.1.1.9.40|2|4 +1.3.6.1.2.1.13.3.1.1.9.41|2|4 +1.3.6.1.2.1.13.3.1.1.9.42|2|4 +1.3.6.1.2.1.13.3.1.1.9.43|2|4 +1.3.6.1.2.1.13.3.1.1.9.44|2|4 +1.3.6.1.2.1.13.3.1.1.9.45|2|4 +1.3.6.1.2.1.13.3.1.1.9.46|2|4 +1.3.6.1.2.1.13.3.1.1.9.47|2|4 +1.3.6.1.2.1.13.3.1.1.9.48|2|4 +1.3.6.1.2.1.13.3.1.1.9.49|2|4 +1.3.6.1.2.1.13.3.1.1.9.50|2|4 +1.3.6.1.2.1.13.3.1.1.9.51|2|4 +1.3.6.1.2.1.13.3.1.1.9.52|2|4 +1.3.6.1.2.1.13.3.1.1.9.53|2|4 +1.3.6.1.2.1.13.3.1.1.9.54|2|4 +1.3.6.1.2.1.13.3.1.1.9.55|2|4 +1.3.6.1.2.1.13.3.1.1.9.56|2|4 +1.3.6.1.2.1.13.3.1.1.9.57|2|4 +1.3.6.1.2.1.13.3.1.1.9.58|2|4 +1.3.6.1.2.1.13.3.1.1.9.59|2|4 +1.3.6.1.2.1.13.3.1.1.9.60|2|4 +1.3.6.1.2.1.13.3.1.1.9.61|2|4 +1.3.6.1.2.1.13.3.1.1.9.62|2|4 +1.3.6.1.2.1.13.3.1.1.9.63|2|4 +1.3.6.1.2.1.13.3.1.1.9.64|2|4 +1.3.6.1.2.1.13.3.1.1.9.65|2|4 +1.3.6.1.2.1.13.3.1.1.9.66|2|4 +1.3.6.1.2.1.13.3.1.1.9.67|2|4 +1.3.6.1.2.1.13.3.1.1.9.68|2|4 +1.3.6.1.2.1.13.3.1.1.9.69|2|4 +1.3.6.1.2.1.13.3.1.1.9.70|2|4 +1.3.6.1.2.1.13.3.1.1.9.71|2|4 +1.3.6.1.2.1.13.3.1.1.9.72|2|4 +1.3.6.1.2.1.13.3.1.1.9.73|2|4 +1.3.6.1.2.1.13.3.1.1.10.1|4| +1.3.6.1.2.1.13.3.1.1.10.4|4| +1.3.6.1.2.1.13.3.1.1.10.5|4| +1.3.6.1.2.1.13.3.1.1.10.6|4| +1.3.6.1.2.1.13.3.1.1.10.7|4| +1.3.6.1.2.1.13.3.1.1.10.8|4| +1.3.6.1.2.1.13.3.1.1.10.9|4| +1.3.6.1.2.1.13.3.1.1.10.10|4| +1.3.6.1.2.1.13.3.1.1.10.11|4| +1.3.6.1.2.1.13.3.1.1.10.12|4| +1.3.6.1.2.1.13.3.1.1.10.13|4| +1.3.6.1.2.1.13.3.1.1.10.16|4| +1.3.6.1.2.1.13.3.1.1.10.17|4| +1.3.6.1.2.1.13.3.1.1.10.18|4| +1.3.6.1.2.1.13.3.1.1.10.19|4| +1.3.6.1.2.1.13.3.1.1.10.20|4| +1.3.6.1.2.1.13.3.1.1.10.21|4| +1.3.6.1.2.1.13.3.1.1.10.22|4| +1.3.6.1.2.1.13.3.1.1.10.23|4| +1.3.6.1.2.1.13.3.1.1.10.24|4| +1.3.6.1.2.1.13.3.1.1.10.25|4| +1.3.6.1.2.1.13.3.1.1.10.26|4| +1.3.6.1.2.1.13.3.1.1.10.27|4| +1.3.6.1.2.1.13.3.1.1.10.28|4| +1.3.6.1.2.1.13.3.1.1.10.29|4| +1.3.6.1.2.1.13.3.1.1.10.30|4| +1.3.6.1.2.1.13.3.1.1.10.31|4| +1.3.6.1.2.1.13.3.1.1.10.32|4| +1.3.6.1.2.1.13.3.1.1.10.33|4| +1.3.6.1.2.1.13.3.1.1.10.34|4| +1.3.6.1.2.1.13.3.1.1.10.35|4| +1.3.6.1.2.1.13.3.1.1.10.36|4| +1.3.6.1.2.1.13.3.1.1.10.37|4| +1.3.6.1.2.1.13.3.1.1.10.38|4| +1.3.6.1.2.1.13.3.1.1.10.39|4| +1.3.6.1.2.1.13.3.1.1.10.40|4| +1.3.6.1.2.1.13.3.1.1.10.41|4| +1.3.6.1.2.1.13.3.1.1.10.42|4| +1.3.6.1.2.1.13.3.1.1.10.43|4| +1.3.6.1.2.1.13.3.1.1.10.44|4| +1.3.6.1.2.1.13.3.1.1.10.45|4| +1.3.6.1.2.1.13.3.1.1.10.46|4| +1.3.6.1.2.1.13.3.1.1.10.47|4| +1.3.6.1.2.1.13.3.1.1.10.48|4| +1.3.6.1.2.1.13.3.1.1.10.49|4| +1.3.6.1.2.1.13.3.1.1.10.50|4| +1.3.6.1.2.1.13.3.1.1.10.51|4| +1.3.6.1.2.1.13.3.1.1.10.52|4| +1.3.6.1.2.1.13.3.1.1.10.53|4| +1.3.6.1.2.1.13.3.1.1.10.54|4| +1.3.6.1.2.1.13.3.1.1.10.55|4| +1.3.6.1.2.1.13.3.1.1.10.56|4| +1.3.6.1.2.1.13.3.1.1.10.57|4| +1.3.6.1.2.1.13.3.1.1.10.58|4| +1.3.6.1.2.1.13.3.1.1.10.59|4| +1.3.6.1.2.1.13.3.1.1.10.60|4| +1.3.6.1.2.1.13.3.1.1.10.61|4| +1.3.6.1.2.1.13.3.1.1.10.62|4| +1.3.6.1.2.1.13.3.1.1.10.63|4| +1.3.6.1.2.1.13.3.1.1.10.64|4| +1.3.6.1.2.1.13.3.1.1.10.65|4| +1.3.6.1.2.1.13.3.1.1.10.66|4| +1.3.6.1.2.1.13.3.1.1.10.67|4| +1.3.6.1.2.1.13.3.1.1.10.68|4| +1.3.6.1.2.1.13.3.1.1.10.69|4| +1.3.6.1.2.1.13.3.1.1.10.70|4| +1.3.6.1.2.1.13.3.1.1.10.71|4| +1.3.6.1.2.1.13.3.1.1.10.72|4| +1.3.6.1.2.1.13.3.1.1.10.73|4| +1.3.6.1.2.1.13.3.1.1.11.1|2|9 +1.3.6.1.2.1.13.3.1.1.11.4|2|8 +1.3.6.1.2.1.13.3.1.1.11.5|2|0 +1.3.6.1.2.1.13.3.1.1.11.6|2|7 +1.3.6.1.2.1.13.3.1.1.11.7|2|0 +1.3.6.1.2.1.13.3.1.1.11.8|2|1 +1.3.6.1.2.1.13.3.1.1.11.9|2|2 +1.3.6.1.2.1.13.3.1.1.11.10|2|3 +1.3.6.1.2.1.13.3.1.1.11.11|2|4 +1.3.6.1.2.1.13.3.1.1.11.12|2|5 +1.3.6.1.2.1.13.3.1.1.11.13|2|6 +1.3.6.1.2.1.13.3.1.1.11.16|2|10 +1.3.6.1.2.1.13.3.1.1.11.17|2|11 +1.3.6.1.2.1.13.3.1.1.11.18|2|12 +1.3.6.1.2.1.13.3.1.1.11.19|2|0 +1.3.6.1.2.1.13.3.1.1.11.20|2|0 +1.3.6.1.2.1.13.3.1.1.11.21|2|0 +1.3.6.1.2.1.13.3.1.1.11.22|2|0 +1.3.6.1.2.1.13.3.1.1.11.23|2|0 +1.3.6.1.2.1.13.3.1.1.11.24|2|0 +1.3.6.1.2.1.13.3.1.1.11.25|2|0 +1.3.6.1.2.1.13.3.1.1.11.26|2|0 +1.3.6.1.2.1.13.3.1.1.11.27|2|0 +1.3.6.1.2.1.13.3.1.1.11.28|2|0 +1.3.6.1.2.1.13.3.1.1.11.29|2|0 +1.3.6.1.2.1.13.3.1.1.11.30|2|0 +1.3.6.1.2.1.13.3.1.1.11.31|2|0 +1.3.6.1.2.1.13.3.1.1.11.32|2|0 +1.3.6.1.2.1.13.3.1.1.11.33|2|0 +1.3.6.1.2.1.13.3.1.1.11.34|2|0 +1.3.6.1.2.1.13.3.1.1.11.35|2|0 +1.3.6.1.2.1.13.3.1.1.11.36|2|0 +1.3.6.1.2.1.13.3.1.1.11.37|2|0 +1.3.6.1.2.1.13.3.1.1.11.38|2|0 +1.3.6.1.2.1.13.3.1.1.11.39|2|0 +1.3.6.1.2.1.13.3.1.1.11.40|2|0 +1.3.6.1.2.1.13.3.1.1.11.41|2|0 +1.3.6.1.2.1.13.3.1.1.11.42|2|0 +1.3.6.1.2.1.13.3.1.1.11.43|2|0 +1.3.6.1.2.1.13.3.1.1.11.44|2|0 +1.3.6.1.2.1.13.3.1.1.11.45|2|0 +1.3.6.1.2.1.13.3.1.1.11.46|2|0 +1.3.6.1.2.1.13.3.1.1.11.47|2|0 +1.3.6.1.2.1.13.3.1.1.11.48|2|0 +1.3.6.1.2.1.13.3.1.1.11.49|2|0 +1.3.6.1.2.1.13.3.1.1.11.50|2|0 +1.3.6.1.2.1.13.3.1.1.11.51|2|0 +1.3.6.1.2.1.13.3.1.1.11.52|2|0 +1.3.6.1.2.1.13.3.1.1.11.53|2|0 +1.3.6.1.2.1.13.3.1.1.11.54|2|0 +1.3.6.1.2.1.13.3.1.1.11.55|2|0 +1.3.6.1.2.1.13.3.1.1.11.56|2|0 +1.3.6.1.2.1.13.3.1.1.11.57|2|0 +1.3.6.1.2.1.13.3.1.1.11.58|2|0 +1.3.6.1.2.1.13.3.1.1.11.59|2|0 +1.3.6.1.2.1.13.3.1.1.11.60|2|0 +1.3.6.1.2.1.13.3.1.1.11.61|2|0 +1.3.6.1.2.1.13.3.1.1.11.62|2|0 +1.3.6.1.2.1.13.3.1.1.11.63|2|0 +1.3.6.1.2.1.13.3.1.1.11.64|2|0 +1.3.6.1.2.1.13.3.1.1.11.65|2|0 +1.3.6.1.2.1.13.3.1.1.11.66|2|0 +1.3.6.1.2.1.13.3.1.1.11.67|2|0 +1.3.6.1.2.1.13.3.1.1.11.68|2|0 +1.3.6.1.2.1.13.3.1.1.11.69|2|0 +1.3.6.1.2.1.13.3.1.1.11.70|2|0 +1.3.6.1.2.1.13.3.1.1.11.71|2|0 +1.3.6.1.2.1.13.3.1.1.11.72|2|0 +1.3.6.1.2.1.13.3.1.1.11.73|2|0 +1.3.6.1.2.1.13.4.1.0|65|0 +1.3.6.1.2.1.13.4.2.0|65|0 +1.3.6.1.2.1.13.4.3.0|65|0 +1.3.6.1.2.1.13.4.4.0|65|0 +1.3.6.1.2.1.13.4.5.0|65|0 +1.3.6.1.2.1.13.4.6.0|65|0 +1.3.6.1.2.1.13.4.7.0|65|0 +1.3.6.1.2.1.13.4.8.0|65|0 +1.3.6.1.2.1.13.4.9.0|65|0 +1.3.6.1.2.1.13.4.10.0|65|0 +1.3.6.1.2.1.13.4.11.0|65|0 +1.3.6.1.2.1.13.4.12.0|65|0 +1.3.6.1.2.1.13.4.13.0|65|0 +1.3.6.1.2.1.13.4.14.0|65|0 +1.3.6.1.2.1.13.9.1.0|65|0 +1.3.6.1.2.1.13.9.2.0|65|0 +1.3.6.1.2.1.15.1.0|4x|10 +1.3.6.1.2.1.15.2.0|2|0 +1.3.6.1.2.1.15.4.0|64x|00000000 +1.3.6.1.2.1.16.19.1.0|4x|10400040 +1.3.6.1.2.1.16.19.2.0|4x|31372e392e34 +1.3.6.1.2.1.16.19.3.0|4| +1.3.6.1.2.1.16.19.4.0|4x|07e80902171d1201 +1.3.6.1.2.1.16.19.5.0|2|1 +1.3.6.1.2.1.16.19.6.0|4x|626f6f74666c6173683a7061636b616765732e636f6e66 +1.3.6.1.2.1.16.19.7.0|64x|00000000 +1.3.6.1.2.1.16.19.8.0|2|1 +1.3.6.1.2.1.16.19.9.0|2|1 +1.3.6.1.2.1.16.19.12.0|64x|0ab73401 +1.3.6.1.2.1.16.19.15.0|4x|00 +1.3.6.1.2.1.16.19.16.0|4x|0000 +1.3.6.1.2.1.16.29.1.2.1.0|4x|80 +1.3.6.1.2.1.17.1.1.0|4x|8c1e806f2360 +1.3.6.1.2.1.17.1.2.0|2|0 +1.3.6.1.2.1.17.1.3.0|2|4 +1.3.6.1.2.1.31.1.1.1.1.1|4x|5477302f302f30 +1.3.6.1.2.1.31.1.1.1.1.2|4x|5477302f302f31 +1.3.6.1.2.1.31.1.1.1.1.3|4x|5477302f302f32 +1.3.6.1.2.1.31.1.1.1.1.4|4x|5477302f302f33 +1.3.6.1.2.1.31.1.1.1.1.5|4x|5465302f312f30 +1.3.6.1.2.1.31.1.1.1.1.6|4x|5465302f312f31 +1.3.6.1.2.1.31.1.1.1.1.7|4|Gi0 +1.3.6.1.2.1.31.1.1.1.1.8|4|Vo0 +1.3.6.1.2.1.31.1.1.1.1.9|4|Nu0 +1.3.6.1.2.1.31.1.1.1.1.10|4|Vl1 +1.3.6.1.2.1.31.1.1.1.1.11|4|Vl52 +1.3.6.1.2.1.31.1.1.1.1.12|4|Po9 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|0 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|2354465580600 +1.3.6.1.2.1.31.1.1.1.6.6|70|8236068738117 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|1577047576050 +1.3.6.1.2.1.31.1.1.1.6.12|70|10590534318717 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|0 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|4671317769 +1.3.6.1.2.1.31.1.1.1.7.6|70|9021399224 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|3423380520 +1.3.6.1.2.1.31.1.1.1.7.12|70|13692716993 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|7121430672619 +1.3.6.1.2.1.31.1.1.1.10.6|70|4564050640614 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|7391100678772 +1.3.6.1.2.1.31.1.1.1.10.12|70|11685481313233 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|8618094314 +1.3.6.1.2.1.31.1.1.1.11.6|70|5319195344 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|7082622858 +1.3.6.1.2.1.31.1.1.1.11.12|70|13937289658 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|2 +1.3.6.1.2.1.31.1.1.1.14.4|2|2 +1.3.6.1.2.1.31.1.1.1.14.5|2|2 +1.3.6.1.2.1.31.1.1.1.14.6|2|2 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|2500 +1.3.6.1.2.1.31.1.1.1.15.2|66|2500 +1.3.6.1.2.1.31.1.1.1.15.3|66|2500 +1.3.6.1.2.1.31.1.1.1.15.4|66|2500 +1.3.6.1.2.1.31.1.1.1.15.5|66|10000 +1.3.6.1.2.1.31.1.1.1.15.6|66|10000 +1.3.6.1.2.1.31.1.1.1.15.7|66|1000 +1.3.6.1.2.1.31.1.1.1.15.8|66|10000 +1.3.6.1.2.1.31.1.1.1.15.9|66|10000 +1.3.6.1.2.1.31.1.1.1.15.10|66|1000 +1.3.6.1.2.1.31.1.1.1.15.11|66|1000 +1.3.6.1.2.1.31.1.1.1.15.12|66|20000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +1.3.6.1.2.1.31.1.1.1.17.2|2|1 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.17.7|2|1 +1.3.6.1.2.1.31.1.1.1.17.8|2|2 +1.3.6.1.2.1.31.1.1.1.17.9|2|2 +1.3.6.1.2.1.31.1.1.1.17.10|2|2 +1.3.6.1.2.1.31.1.1.1.17.11|2|2 +1.3.6.1.2.1.31.1.1.1.17.12|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4x|2a2a2a544f204d41522d434f522d53572d312054656e20322f302f392a2a2a +1.3.6.1.2.1.31.1.1.1.18.6|4x|2a2a2a544f204d41522d434f522d53572d312054656e20312f302f392a2a2a +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4x|2a2a2a544f204d41522d434f522d53572d312a2a2a +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.5.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.5|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.6|2|1 +1.3.6.1.2.1.31.1.4.1.2.7.6.140.30.128.111.35.97|2|1 +1.3.6.1.2.1.31.1.4.1.2.7.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.2.10.6.140.30.128.111.35.107|2|1 +1.3.6.1.2.1.31.1.4.1.2.10.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.2.11.6.140.30.128.111.35.107|2|1 +1.3.6.1.2.1.31.1.4.1.2.11.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.2.12.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.3.7.6.140.30.128.111.35.97|2|1 +1.3.6.1.2.1.31.1.4.1.3.7.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.3.10.6.140.30.128.111.35.107|2|1 +1.3.6.1.2.1.31.1.4.1.3.10.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.3.11.6.140.30.128.111.35.107|2|1 +1.3.6.1.2.1.31.1.4.1.3.11.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.4.1.3.12.6.255.255.255.255.255.255|2|1 +1.3.6.1.2.1.31.1.5.0|67|2155 +1.3.6.1.2.1.31.1.6.0|67|5265 +1.3.6.1.2.1.37.1.5.1.2.0|6|1.3.6.1.2.1.37.1.1.1 +1.3.6.1.2.1.37.1.5.1.3.0|2|0 +1.3.6.1.2.1.37.1.5.1.4.0|2|0 +1.3.6.1.2.1.37.1.5.1.5.0|2|0 +1.3.6.1.2.1.37.1.5.1.6.0|2|0 +1.3.6.1.2.1.37.1.5.1.7.0|2|0 +1.3.6.1.2.1.37.1.5.1.8.0|2|0 +1.3.6.1.2.1.37.1.5.1.9.0|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.1|4x|436973636f204339383030204475616c2043686173736973 +1.3.6.1.2.1.47.1.1.1.1.2.2|4x|436973636f2043393830302d4c2d462d4b392043686173736973 +1.3.6.1.2.1.47.1.1.1.1.2.3|4x|506f77657220537570706c7920426179 +1.3.6.1.2.1.47.1.1.1.1.2.4|4x|436973636f20436174616c79737420576972656c65737320436f6e74726f6c6c6572203132562044432047656e6572696320506f77657220537570706c79 +1.3.6.1.2.1.47.1.1.1.1.2.14|4x|506f77657220537570706c79 +1.3.6.1.2.1.47.1.1.1.1.2.24|4x|436973636f2043393830302d4c2d462d4b392046616e2054726179 +1.3.6.1.2.1.47.1.1.1.1.2.35|4|Fan +1.3.6.1.2.1.47.1.1.1.1.2.36|4|Fan +1.3.6.1.2.1.47.1.1.1.1.2.1000|4x|436973636f2043393830302d4c2d462d4b39204d6f64756c617220496e746572666163652050726f636573736f72 +1.3.6.1.2.1.47.1.1.1.1.2.1040|4x|46726f6e742050616e656c206261792d30203420706f72747320322e35204769676162697465746865726e6574204d6f64756c65 +1.3.6.1.2.1.47.1.1.1.1.2.1041|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.2.1.47.1.1.1.1.2.1042|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.2.1.47.1.1.1.1.2.1043|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.2.1.47.1.1.1.1.2.1044|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.2.1.47.1.1.1.1.2.1280|4x|46726f6e742050616e656c206261792d31203220706f7274732054656e2f4769676162697465746865726e6574204d6f64756c65 +1.3.6.1.2.1.47.1.1.1.1.2.1331|4x|737562736c6f7420302f31207472616e7363656976657220636f6e7461696e65722030 +1.3.6.1.2.1.47.1.1.1.1.2.1332|4x|31304745204355334d +1.3.6.1.2.1.47.1.1.1.1.2.1333|4x|4255494c542d494e2d3278313047452d46 +1.3.6.1.2.1.47.1.1.1.1.2.1343|4x|737562736c6f7420302f31207472616e7363656976657220636f6e7461696e65722031 +1.3.6.1.2.1.47.1.1.1.1.2.1344|4x|31304745204355334d +1.3.6.1.2.1.47.1.1.1.1.2.1345|4x|4255494c542d494e2d3278313047452d46 +1.3.6.1.2.1.47.1.1.1.1.2.2000|4x|436973636f2043393830302d4c2d462d4b3920526f7574652050726f636573736f72 +1.3.6.1.2.1.47.1.1.1.1.2.2001|4x|54656d703a2042524454454d5031 +1.3.6.1.2.1.47.1.1.1.1.2.2002|4x|54656d703a2042524454454d5032 +1.3.6.1.2.1.47.1.1.1.1.2.2003|4x|54656d703a204350552044696520 +1.3.6.1.2.1.47.1.1.1.1.2.2101|4x|4350552030206f66206d6f64756c65205230 +1.3.6.1.2.1.47.1.1.1.1.2.2102|4x|55534220506f7274 +1.3.6.1.2.1.47.1.1.1.1.2.2104|4x|4e6574776f726b204d616e6167656d656e742045746865726e6574 +1.3.6.1.2.1.47.1.1.1.1.2.3000|4x|436973636f2043393830302d4c2d462d4b3920456d6265646465642053657276696365732050726f636573736f72 +1.3.6.1.2.1.47.1.1.1.1.2.3026|4x|5146502030206f66206d6f64756c65204630 +1.3.6.1.2.1.47.1.1.1.1.3.1|6|1.3.6.1.4.1.9.12.3.1.11.28 +1.3.6.1.2.1.47.1.1.1.1.3.2|6|1.3.6.1.4.1.9.12.3.1.3.2224 +1.3.6.1.2.1.47.1.1.1.1.3.3|6|1.3.6.1.4.1.9.12.3.1.5.185 +1.3.6.1.2.1.47.1.1.1.1.3.4|6|1.3.6.1.4.1.9.12.3.1.6.690 +1.3.6.1.2.1.47.1.1.1.1.3.14|6|1.3.6.1.4.1.9.12.3.1.6.298 +1.3.6.1.2.1.47.1.1.1.1.3.24|6|1.3.6.1.4.1.9.12.3.1.7.375 +1.3.6.1.2.1.47.1.1.1.1.3.35|6|1.3.6.1.4.1.9.12.3.1.7.134 +1.3.6.1.2.1.47.1.1.1.1.3.36|6|1.3.6.1.4.1.9.12.3.1.7.134 +1.3.6.1.2.1.47.1.1.1.1.3.1000|6|1.3.6.1.4.1.9.12.3.1.9.68.97 +1.3.6.1.2.1.47.1.1.1.1.3.1040|6|1.3.6.1.4.1.9.12.3.1.9.68.104 +1.3.6.1.2.1.47.1.1.1.1.3.1041|6|1.3.6.1.4.1.9.12.3.1.10.373 +1.3.6.1.2.1.47.1.1.1.1.3.1042|6|1.3.6.1.4.1.9.12.3.1.10.373 +1.3.6.1.2.1.47.1.1.1.1.3.1043|6|1.3.6.1.4.1.9.12.3.1.10.373 +1.3.6.1.2.1.47.1.1.1.1.3.1044|6|1.3.6.1.4.1.9.12.3.1.10.373 +1.3.6.1.2.1.47.1.1.1.1.3.1280|6|1.3.6.1.4.1.9.12.3.1.9.68.106 +1.3.6.1.2.1.47.1.1.1.1.3.1331|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.1332|6|1.3.6.1.4.1.9.12.3.1.9.77.3 +1.3.6.1.2.1.47.1.1.1.1.3.1333|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.1343|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.2.1.47.1.1.1.1.3.1344|6|1.3.6.1.4.1.9.12.3.1.9.77.3 +1.3.6.1.2.1.47.1.1.1.1.3.1345|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.2.1.47.1.1.1.1.3.2000|6|1.3.6.1.4.1.9.12.3.1.9.68.95 +1.3.6.1.2.1.47.1.1.1.1.3.2001|6|1.3.6.1.4.1.9.12.3.1.8.31 +1.3.6.1.2.1.47.1.1.1.1.3.2002|6|1.3.6.1.4.1.9.12.3.1.8.31 +1.3.6.1.2.1.47.1.1.1.1.3.2003|6|1.3.6.1.4.1.9.12.3.1.8.31 +1.3.6.1.2.1.47.1.1.1.1.3.2101|6|1.3.6.1.4.1.9.12.3.1.9.5 +1.3.6.1.2.1.47.1.1.1.1.3.2102|6|1.3.6.1.4.1.9.12.3.1.5.333 +1.3.6.1.2.1.47.1.1.1.1.3.2104|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.2.1.47.1.1.1.1.3.3000|6|1.3.6.1.4.1.9.12.3.1.9.68.96 +1.3.6.1.2.1.47.1.1.1.1.3.3026|6|1.3.6.1.4.1.9.12.3.1.9.5 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.4|2|3 +1.3.6.1.2.1.47.1.1.1.1.4.14|2|4 +1.3.6.1.2.1.47.1.1.1.1.4.24|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.35|2|24 +1.3.6.1.2.1.47.1.1.1.1.4.36|2|24 +1.3.6.1.2.1.47.1.1.1.1.4.1000|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.1040|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1041|2|1040 +1.3.6.1.2.1.47.1.1.1.1.4.1042|2|1040 +1.3.6.1.2.1.47.1.1.1.1.4.1043|2|1040 +1.3.6.1.2.1.47.1.1.1.1.4.1044|2|1040 +1.3.6.1.2.1.47.1.1.1.1.4.1280|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1331|2|1280 +1.3.6.1.2.1.47.1.1.1.1.4.1332|2|1331 +1.3.6.1.2.1.47.1.1.1.1.4.1333|2|1332 +1.3.6.1.2.1.47.1.1.1.1.4.1343|2|1280 +1.3.6.1.2.1.47.1.1.1.1.4.1344|2|1343 +1.3.6.1.2.1.47.1.1.1.1.4.1345|2|1344 +1.3.6.1.2.1.47.1.1.1.1.4.2000|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.2001|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.2002|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.2003|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.2101|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.2102|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.2104|2|2000 +1.3.6.1.2.1.47.1.1.1.1.4.3000|2|2 +1.3.6.1.2.1.47.1.1.1.1.4.3026|2|3000 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|11 +1.3.6.1.2.1.47.1.1.1.1.5.2|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.4|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.14|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.24|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.35|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.36|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.1000|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.1040|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.1041|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1042|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1043|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1044|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1280|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.1331|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1332|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.1333|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.1343|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.1344|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.1345|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.2000|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.2001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.2101|2|12 +1.3.6.1.2.1.47.1.1.1.1.5.2102|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.2104|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.3000|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.3026|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.4|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.14|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.24|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.35|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.36|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1000|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1040|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1041|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1042|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1043|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.1044|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.1280|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1331|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1332|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1333|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1343|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1344|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.1345|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2001|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2002|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.2003|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.2101|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2102|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.2104|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.3026|2|0 +1.3.6.1.2.1.47.1.1.1.1.7.1|4x|4d756c746920436861737369732053797374656d +1.3.6.1.2.1.47.1.1.1.1.7.2|4x|436861737369732031 +1.3.6.1.2.1.47.1.1.1.1.7.3|4x|43686173736973203120506f77657220537570706c79204261792030 +1.3.6.1.2.1.47.1.1.1.1.7.4|4x|43686173736973203120506f77657220537570706c79204d6f64756c652030 +1.3.6.1.2.1.47.1.1.1.1.7.14|4x|43686173736973203120506f77657220537570706c792030 +1.3.6.1.2.1.47.1.1.1.1.7.24|4x|4368617373697320312046616e2054726179 +1.3.6.1.2.1.47.1.1.1.1.7.35|4x|4368617373697320312046616e20312f30 +1.3.6.1.2.1.47.1.1.1.1.7.36|4x|4368617373697320312046616e20312f31 +1.3.6.1.2.1.47.1.1.1.1.7.1000|4x|6d6f64756c652030 +1.3.6.1.2.1.47.1.1.1.1.7.1040|4x|53504120737562736c6f7420302f30 +1.3.6.1.2.1.47.1.1.1.1.7.1041|4x|54776f4769676162697445746865726e6574302f302f30 +1.3.6.1.2.1.47.1.1.1.1.7.1042|4x|54776f4769676162697445746865726e6574302f302f31 +1.3.6.1.2.1.47.1.1.1.1.7.1043|4x|54776f4769676162697445746865726e6574302f302f32 +1.3.6.1.2.1.47.1.1.1.1.7.1044|4x|54776f4769676162697445746865726e6574302f302f33 +1.3.6.1.2.1.47.1.1.1.1.7.1280|4x|53504120737562736c6f7420302f31 +1.3.6.1.2.1.47.1.1.1.1.7.1331|4x|737562736c6f7420302f31207472616e7363656976657220636f6e7461696e65722030 +1.3.6.1.2.1.47.1.1.1.1.7.1332|4x|737562736c6f7420302f31207472616e736365697665722030 +1.3.6.1.2.1.47.1.1.1.1.7.1333|4x|54656e4769676162697445746865726e6574302f312f30 +1.3.6.1.2.1.47.1.1.1.1.7.1343|4x|737562736c6f7420302f31207472616e7363656976657220636f6e7461696e65722031 +1.3.6.1.2.1.47.1.1.1.1.7.1344|4x|737562736c6f7420302f31207472616e736365697665722031 +1.3.6.1.2.1.47.1.1.1.1.7.1345|4x|54656e4769676162697445746865726e6574302f312f31 +1.3.6.1.2.1.47.1.1.1.1.7.2000|4x|6d6f64756c65205230 +1.3.6.1.2.1.47.1.1.1.1.7.2001|4x|54656d703a2042524454454d50312052302f30 +1.3.6.1.2.1.47.1.1.1.1.7.2002|4x|54656d703a2042524454454d50322052302f31 +1.3.6.1.2.1.47.1.1.1.1.7.2003|4x|54656d703a2043505520446965202052302f32 +1.3.6.1.2.1.47.1.1.1.1.7.2101|4x|6370752052302f30 +1.3.6.1.2.1.47.1.1.1.1.7.2102|4x|7573622052302f30 +1.3.6.1.2.1.47.1.1.1.1.7.2104|4x|4e4d45205230 +1.3.6.1.2.1.47.1.1.1.1.7.3000|4x|6d6f64756c65204630 +1.3.6.1.2.1.47.1.1.1.1.7.3026|4x|7166702046302f30 +1.3.6.1.2.1.47.1.1.1.1.8.1|4| +1.3.6.1.2.1.47.1.1.1.1.8.2|4|01 +1.3.6.1.2.1.47.1.1.1.1.8.3|4| +1.3.6.1.2.1.47.1.1.1.1.8.4|4| +1.3.6.1.2.1.47.1.1.1.1.8.14|4| +1.3.6.1.2.1.47.1.1.1.1.8.24|4| +1.3.6.1.2.1.47.1.1.1.1.8.35|4| +1.3.6.1.2.1.47.1.1.1.1.8.36|4| +1.3.6.1.2.1.47.1.1.1.1.8.1000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1040|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.1041|4| +1.3.6.1.2.1.47.1.1.1.1.8.1042|4| +1.3.6.1.2.1.47.1.1.1.1.8.1043|4| +1.3.6.1.2.1.47.1.1.1.1.8.1044|4| +1.3.6.1.2.1.47.1.1.1.1.8.1280|4|V01 +1.3.6.1.2.1.47.1.1.1.1.8.1331|4| +1.3.6.1.2.1.47.1.1.1.1.8.1332|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.1333|4| +1.3.6.1.2.1.47.1.1.1.1.8.1343|4| +1.3.6.1.2.1.47.1.1.1.1.8.1344|4|V03 +1.3.6.1.2.1.47.1.1.1.1.8.1345|4| +1.3.6.1.2.1.47.1.1.1.1.8.2000|4|01 +1.3.6.1.2.1.47.1.1.1.1.8.2001|4| +1.3.6.1.2.1.47.1.1.1.1.8.2002|4| +1.3.6.1.2.1.47.1.1.1.1.8.2003|4| +1.3.6.1.2.1.47.1.1.1.1.8.2101|4| +1.3.6.1.2.1.47.1.1.1.1.8.2102|4| +1.3.6.1.2.1.47.1.1.1.1.8.2104|4| +1.3.6.1.2.1.47.1.1.1.1.8.3000|4| +1.3.6.1.2.1.47.1.1.1.1.8.3026|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4| +1.3.6.1.2.1.47.1.1.1.1.9.2|4| +1.3.6.1.2.1.47.1.1.1.1.9.3|4| +1.3.6.1.2.1.47.1.1.1.1.9.4|4| +1.3.6.1.2.1.47.1.1.1.1.9.14|4| +1.3.6.1.2.1.47.1.1.1.1.9.24|4| +1.3.6.1.2.1.47.1.1.1.1.9.35|4| +1.3.6.1.2.1.47.1.1.1.1.9.36|4| +1.3.6.1.2.1.47.1.1.1.1.9.1000|4x|31362e313228337229 +1.3.6.1.2.1.47.1.1.1.1.9.1040|4| +1.3.6.1.2.1.47.1.1.1.1.9.1041|4| +1.3.6.1.2.1.47.1.1.1.1.9.1042|4| +1.3.6.1.2.1.47.1.1.1.1.9.1043|4| +1.3.6.1.2.1.47.1.1.1.1.9.1044|4| +1.3.6.1.2.1.47.1.1.1.1.9.1280|4| +1.3.6.1.2.1.47.1.1.1.1.9.1331|4| +1.3.6.1.2.1.47.1.1.1.1.9.1332|4| +1.3.6.1.2.1.47.1.1.1.1.9.1333|4| +1.3.6.1.2.1.47.1.1.1.1.9.1343|4| +1.3.6.1.2.1.47.1.1.1.1.9.1344|4| +1.3.6.1.2.1.47.1.1.1.1.9.1345|4| +1.3.6.1.2.1.47.1.1.1.1.9.2000|4x|31362e313228337229 +1.3.6.1.2.1.47.1.1.1.1.9.2001|4| +1.3.6.1.2.1.47.1.1.1.1.9.2002|4| +1.3.6.1.2.1.47.1.1.1.1.9.2003|4| +1.3.6.1.2.1.47.1.1.1.1.9.2101|4| +1.3.6.1.2.1.47.1.1.1.1.9.2102|4| +1.3.6.1.2.1.47.1.1.1.1.9.2104|4| +1.3.6.1.2.1.47.1.1.1.1.9.3000|4x|31362e313228337229 +1.3.6.1.2.1.47.1.1.1.1.9.3026|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4| +1.3.6.1.2.1.47.1.1.1.1.10.2|4| +1.3.6.1.2.1.47.1.1.1.1.10.3|4| +1.3.6.1.2.1.47.1.1.1.1.10.4|4| +1.3.6.1.2.1.47.1.1.1.1.10.14|4| +1.3.6.1.2.1.47.1.1.1.1.10.24|4| +1.3.6.1.2.1.47.1.1.1.1.10.35|4| +1.3.6.1.2.1.47.1.1.1.1.10.36|4| +1.3.6.1.2.1.47.1.1.1.1.10.1000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1040|4| +1.3.6.1.2.1.47.1.1.1.1.10.1041|4| +1.3.6.1.2.1.47.1.1.1.1.10.1042|4| +1.3.6.1.2.1.47.1.1.1.1.10.1043|4| +1.3.6.1.2.1.47.1.1.1.1.10.1044|4| +1.3.6.1.2.1.47.1.1.1.1.10.1280|4| +1.3.6.1.2.1.47.1.1.1.1.10.1331|4| +1.3.6.1.2.1.47.1.1.1.1.10.1332|4| +1.3.6.1.2.1.47.1.1.1.1.10.1333|4| +1.3.6.1.2.1.47.1.1.1.1.10.1343|4| +1.3.6.1.2.1.47.1.1.1.1.10.1344|4| +1.3.6.1.2.1.47.1.1.1.1.10.1345|4| +1.3.6.1.2.1.47.1.1.1.1.10.2000|4x|31372e30392e3034 +1.3.6.1.2.1.47.1.1.1.1.10.2001|4| +1.3.6.1.2.1.47.1.1.1.1.10.2002|4| +1.3.6.1.2.1.47.1.1.1.1.10.2003|4| +1.3.6.1.2.1.47.1.1.1.1.10.2101|4| +1.3.6.1.2.1.47.1.1.1.1.10.2102|4| +1.3.6.1.2.1.47.1.1.1.1.10.2104|4| +1.3.6.1.2.1.47.1.1.1.1.10.3000|4x|31372e30392e3034 +1.3.6.1.2.1.47.1.1.1.1.10.3026|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4| +1.3.6.1.2.1.47.1.1.1.1.11.2|4| +1.3.6.1.2.1.47.1.1.1.1.11.3|4| +1.3.6.1.2.1.47.1.1.1.1.11.4|4| +1.3.6.1.2.1.47.1.1.1.1.11.14|4| +1.3.6.1.2.1.47.1.1.1.1.11.24|4| +1.3.6.1.2.1.47.1.1.1.1.11.35|4| +1.3.6.1.2.1.47.1.1.1.1.11.36|4| +1.3.6.1.2.1.47.1.1.1.1.11.1000|4| +1.3.6.1.2.1.47.1.1.1.1.11.1040|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.11.1041|4| +1.3.6.1.2.1.47.1.1.1.1.11.1042|4| +1.3.6.1.2.1.47.1.1.1.1.11.1043|4| +1.3.6.1.2.1.47.1.1.1.1.11.1044|4| +1.3.6.1.2.1.47.1.1.1.1.11.1280|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.11.1331|4| +1.3.6.1.2.1.47.1.1.1.1.11.1332|4x|4d504832363234413238372020202020 +1.3.6.1.2.1.47.1.1.1.1.11.1333|4| +1.3.6.1.2.1.47.1.1.1.1.11.1343|4| +1.3.6.1.2.1.47.1.1.1.1.11.1344|4x|4d504832363234413238352020202020 +1.3.6.1.2.1.47.1.1.1.1.11.1345|4| +1.3.6.1.2.1.47.1.1.1.1.11.2000|4| +1.3.6.1.2.1.47.1.1.1.1.11.2001|4| +1.3.6.1.2.1.47.1.1.1.1.11.2002|4| +1.3.6.1.2.1.47.1.1.1.1.11.2003|4| +1.3.6.1.2.1.47.1.1.1.1.11.2101|4| +1.3.6.1.2.1.47.1.1.1.1.11.2102|4| +1.3.6.1.2.1.47.1.1.1.1.11.2104|4| +1.3.6.1.2.1.47.1.1.1.1.11.3000|4| +1.3.6.1.2.1.47.1.1.1.1.11.3026|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4| +1.3.6.1.2.1.47.1.1.1.1.12.2|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.12.3|4| +1.3.6.1.2.1.47.1.1.1.1.12.4|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.12.14|4| +1.3.6.1.2.1.47.1.1.1.1.12.24|4| +1.3.6.1.2.1.47.1.1.1.1.12.35|4| +1.3.6.1.2.1.47.1.1.1.1.12.36|4| +1.3.6.1.2.1.47.1.1.1.1.12.1000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.12.1040|4|CISCO +1.3.6.1.2.1.47.1.1.1.1.12.1041|4| +1.3.6.1.2.1.47.1.1.1.1.12.1042|4| +1.3.6.1.2.1.47.1.1.1.1.12.1043|4| +1.3.6.1.2.1.47.1.1.1.1.12.1044|4| +1.3.6.1.2.1.47.1.1.1.1.12.1280|4|CISCO +1.3.6.1.2.1.47.1.1.1.1.12.1331|4| +1.3.6.1.2.1.47.1.1.1.1.12.1332|4x|434953434f2d4d4f4c45582020202020 +1.3.6.1.2.1.47.1.1.1.1.12.1333|4| +1.3.6.1.2.1.47.1.1.1.1.12.1343|4| +1.3.6.1.2.1.47.1.1.1.1.12.1344|4x|434953434f2d4d4f4c45582020202020 +1.3.6.1.2.1.47.1.1.1.1.12.1345|4| +1.3.6.1.2.1.47.1.1.1.1.12.2000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.12.2001|4| +1.3.6.1.2.1.47.1.1.1.1.12.2002|4| +1.3.6.1.2.1.47.1.1.1.1.12.2003|4| +1.3.6.1.2.1.47.1.1.1.1.12.2101|4| +1.3.6.1.2.1.47.1.1.1.1.12.2102|4| +1.3.6.1.2.1.47.1.1.1.1.12.2104|4| +1.3.6.1.2.1.47.1.1.1.1.12.3000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.12.3026|4x|436973636f2053797374656d7320496e63 +1.3.6.1.2.1.47.1.1.1.1.13.1|4| +1.3.6.1.2.1.47.1.1.1.1.13.2|4x|43393830302d4c2d462d4b39 +1.3.6.1.2.1.47.1.1.1.1.13.3|4| +1.3.6.1.2.1.47.1.1.1.1.13.4|4x|5057522d313256 +1.3.6.1.2.1.47.1.1.1.1.13.14|4| +1.3.6.1.2.1.47.1.1.1.1.13.24|4x|43393830302d4c2d462d4b392d46414e +1.3.6.1.2.1.47.1.1.1.1.13.35|4| +1.3.6.1.2.1.47.1.1.1.1.13.36|4| +1.3.6.1.2.1.47.1.1.1.1.13.1000|4x|43393830302d4c2d462d4b39 +1.3.6.1.2.1.47.1.1.1.1.13.1040|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.2.1.47.1.1.1.1.13.1041|4| +1.3.6.1.2.1.47.1.1.1.1.13.1042|4| +1.3.6.1.2.1.47.1.1.1.1.13.1043|4| +1.3.6.1.2.1.47.1.1.1.1.13.1044|4| +1.3.6.1.2.1.47.1.1.1.1.13.1280|4x|4255494c542d494e2d3278313047452d46 +1.3.6.1.2.1.47.1.1.1.1.13.1331|4| +1.3.6.1.2.1.47.1.1.1.1.13.1332|4x|5346502d48313047422d4355334d202020202020 +1.3.6.1.2.1.47.1.1.1.1.13.1333|4| +1.3.6.1.2.1.47.1.1.1.1.13.1343|4| +1.3.6.1.2.1.47.1.1.1.1.13.1344|4x|5346502d48313047422d4355334d202020202020 +1.3.6.1.2.1.47.1.1.1.1.13.1345|4| +1.3.6.1.2.1.47.1.1.1.1.13.2000|4x|43393830302d4c2d462d4b39 +1.3.6.1.2.1.47.1.1.1.1.13.2001|4| +1.3.6.1.2.1.47.1.1.1.1.13.2002|4| +1.3.6.1.2.1.47.1.1.1.1.13.2003|4| +1.3.6.1.2.1.47.1.1.1.1.13.2101|4| +1.3.6.1.2.1.47.1.1.1.1.13.2102|4| +1.3.6.1.2.1.47.1.1.1.1.13.2104|4| +1.3.6.1.2.1.47.1.1.1.1.13.3000|4x|43393830302d4c2d462d4b39 +1.3.6.1.2.1.47.1.1.1.1.13.3026|4| +1.3.6.1.2.1.47.1.1.1.1.14.1|4| +1.3.6.1.2.1.47.1.1.1.1.14.2|4| +1.3.6.1.2.1.47.1.1.1.1.14.3|4| +1.3.6.1.2.1.47.1.1.1.1.14.4|4| +1.3.6.1.2.1.47.1.1.1.1.14.14|4| +1.3.6.1.2.1.47.1.1.1.1.14.24|4| +1.3.6.1.2.1.47.1.1.1.1.14.35|4| +1.3.6.1.2.1.47.1.1.1.1.14.36|4| +1.3.6.1.2.1.47.1.1.1.1.14.1000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1040|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.14.1041|4| +1.3.6.1.2.1.47.1.1.1.1.14.1042|4| +1.3.6.1.2.1.47.1.1.1.1.14.1043|4| +1.3.6.1.2.1.47.1.1.1.1.14.1044|4| +1.3.6.1.2.1.47.1.1.1.1.14.1280|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.14.1331|4| +1.3.6.1.2.1.47.1.1.1.1.14.1332|4| +1.3.6.1.2.1.47.1.1.1.1.14.1333|4| +1.3.6.1.2.1.47.1.1.1.1.14.1343|4| +1.3.6.1.2.1.47.1.1.1.1.14.1344|4| +1.3.6.1.2.1.47.1.1.1.1.14.1345|4| +1.3.6.1.2.1.47.1.1.1.1.14.2000|4| +1.3.6.1.2.1.47.1.1.1.1.14.2001|4| +1.3.6.1.2.1.47.1.1.1.1.14.2002|4| +1.3.6.1.2.1.47.1.1.1.1.14.2003|4| +1.3.6.1.2.1.47.1.1.1.1.14.2101|4| +1.3.6.1.2.1.47.1.1.1.1.14.2102|4| +1.3.6.1.2.1.47.1.1.1.1.14.2104|4| +1.3.6.1.2.1.47.1.1.1.1.14.3000|4| +1.3.6.1.2.1.47.1.1.1.1.14.3026|4| +1.3.6.1.2.1.47.1.1.1.1.15.1|4| +1.3.6.1.2.1.47.1.1.1.1.15.2|4| +1.3.6.1.2.1.47.1.1.1.1.15.3|4| +1.3.6.1.2.1.47.1.1.1.1.15.4|4| +1.3.6.1.2.1.47.1.1.1.1.15.14|4| +1.3.6.1.2.1.47.1.1.1.1.15.24|4| +1.3.6.1.2.1.47.1.1.1.1.15.35|4| +1.3.6.1.2.1.47.1.1.1.1.15.36|4| +1.3.6.1.2.1.47.1.1.1.1.15.1000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1040|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.15.1041|4| +1.3.6.1.2.1.47.1.1.1.1.15.1042|4| +1.3.6.1.2.1.47.1.1.1.1.15.1043|4| +1.3.6.1.2.1.47.1.1.1.1.15.1044|4| +1.3.6.1.2.1.47.1.1.1.1.15.1280|4x|4e2f41 +1.3.6.1.2.1.47.1.1.1.1.15.1331|4| +1.3.6.1.2.1.47.1.1.1.1.15.1332|4| +1.3.6.1.2.1.47.1.1.1.1.15.1333|4| +1.3.6.1.2.1.47.1.1.1.1.15.1343|4| +1.3.6.1.2.1.47.1.1.1.1.15.1344|4| +1.3.6.1.2.1.47.1.1.1.1.15.1345|4| +1.3.6.1.2.1.47.1.1.1.1.15.2000|4| +1.3.6.1.2.1.47.1.1.1.1.15.2001|4| +1.3.6.1.2.1.47.1.1.1.1.15.2002|4| +1.3.6.1.2.1.47.1.1.1.1.15.2003|4| +1.3.6.1.2.1.47.1.1.1.1.15.2101|4| +1.3.6.1.2.1.47.1.1.1.1.15.2102|4| +1.3.6.1.2.1.47.1.1.1.1.15.2104|4| +1.3.6.1.2.1.47.1.1.1.1.15.3000|4| +1.3.6.1.2.1.47.1.1.1.1.15.3026|4| +1.3.6.1.2.1.47.1.1.1.1.16.1|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.4|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.14|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.24|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.35|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.36|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1040|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1041|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1042|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1043|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1044|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1280|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1331|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1332|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.1333|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1343|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1344|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.1345|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2101|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2102|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2104|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3000|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3026|2|2 +1.3.6.1.2.1.47.1.1.1.1.17.1|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.3|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.4|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.14|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.24|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.35|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.36|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1000|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1040|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1041|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1042|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1043|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1044|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1280|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1331|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1332|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1333|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1343|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1344|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1345|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2000|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2001|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2002|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2003|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2101|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2102|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2104|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.3000|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.3026|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.18.1|4| +1.3.6.1.2.1.47.1.1.1.1.18.2|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.2.1.47.1.1.1.1.18.3|4| +1.3.6.1.2.1.47.1.1.1.1.18.4|4| +1.3.6.1.2.1.47.1.1.1.1.18.14|4| +1.3.6.1.2.1.47.1.1.1.1.18.24|4| +1.3.6.1.2.1.47.1.1.1.1.18.35|4| +1.3.6.1.2.1.47.1.1.1.1.18.36|4| +1.3.6.1.2.1.47.1.1.1.1.18.1000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.2.1.47.1.1.1.1.18.1040|4x|55524e3a434c45493a434e5549414853414141 +1.3.6.1.2.1.47.1.1.1.1.18.1041|4| +1.3.6.1.2.1.47.1.1.1.1.18.1042|4| +1.3.6.1.2.1.47.1.1.1.1.18.1043|4| +1.3.6.1.2.1.47.1.1.1.1.18.1044|4| +1.3.6.1.2.1.47.1.1.1.1.18.1280|4x|55524e3a434c45493a434e5549414853414141 +1.3.6.1.2.1.47.1.1.1.1.18.1331|4| +1.3.6.1.2.1.47.1.1.1.1.18.1332|4x|55524e3a434c45493a434f50514141364a4142 +1.3.6.1.2.1.47.1.1.1.1.18.1333|4| +1.3.6.1.2.1.47.1.1.1.1.18.1343|4| +1.3.6.1.2.1.47.1.1.1.1.18.1344|4x|55524e3a434c45493a434f50514141364a4142 +1.3.6.1.2.1.47.1.1.1.1.18.1345|4| +1.3.6.1.2.1.47.1.1.1.1.18.2000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.2.1.47.1.1.1.1.18.2001|4| +1.3.6.1.2.1.47.1.1.1.1.18.2002|4| +1.3.6.1.2.1.47.1.1.1.1.18.2003|4| +1.3.6.1.2.1.47.1.1.1.1.18.2101|4| +1.3.6.1.2.1.47.1.1.1.1.18.2102|4| +1.3.6.1.2.1.47.1.1.1.1.18.2104|4| +1.3.6.1.2.1.47.1.1.1.1.18.3000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.2.1.47.1.1.1.1.18.3026|4| +1.3.6.1.2.1.47.1.2.1.1.2.1|4|VLAN0000 +1.3.6.1.2.1.47.1.2.1.1.2.2|4x|64656661756c74206c6f676963616c20656e7469747920666f722043393830302d4c2d462d4b3920706c6174666f726d +1.3.6.1.2.1.47.1.2.1.1.2.3|4|vlan1 +1.3.6.1.2.1.47.1.2.1.1.2.4|4|vlan1002 +1.3.6.1.2.1.47.1.2.1.1.2.5|4|vlan1004 +1.3.6.1.2.1.47.1.2.1.1.2.6|4|vlan1005 +1.3.6.1.2.1.47.1.2.1.1.2.7|4|vlan1003 +1.3.6.1.2.1.47.1.2.1.1.2.8|4|vlan5 +1.3.6.1.2.1.47.1.2.1.1.2.9|4|vlan52 +1.3.6.1.2.1.47.1.2.1.1.2.10|4|vlan72 +1.3.6.1.2.1.47.1.2.1.1.2.11|4|vlan176 +1.3.6.1.2.1.47.1.2.1.1.2.12|4|vlan177 +1.3.6.1.2.1.47.1.2.1.1.2.13|4|vlan178 +1.3.6.1.2.1.47.1.2.1.1.2.14|4|vlan179 +1.3.6.1.2.1.47.1.2.1.1.2.15|4|vlan180 +1.3.6.1.2.1.47.1.2.1.1.2.16|4|vlan181 +1.3.6.1.2.1.47.1.2.1.1.2.17|4|vlan182 +1.3.6.1.2.1.47.1.2.1.1.2.18|4|vlan183 +1.3.6.1.2.1.47.1.2.1.1.2.19|4|vlan184 +1.3.6.1.2.1.47.1.2.1.1.2.20|4|vlan186 +1.3.6.1.2.1.47.1.2.1.1.2.21|4|vlan187 +1.3.6.1.2.1.47.1.2.1.1.2.22|4|vlan191 +1.3.6.1.2.1.47.1.2.1.1.2.23|4|vlan193 +1.3.6.1.2.1.47.1.2.1.1.2.24|4|vlan200 +1.3.6.1.2.1.47.1.2.1.1.2.25|4|vlan205 +1.3.6.1.2.1.47.1.2.1.1.3.1|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.2|6|1.3.6.1.2.1 +1.3.6.1.2.1.47.1.2.1.1.3.3|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.4|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.5|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.6|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.7|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.8|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.9|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.10|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.11|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.12|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.13|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.14|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.15|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.16|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.17|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.18|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.19|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.20|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.21|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.22|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.23|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.24|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.3.25|6|1.3.6.1.2.1.17 +1.3.6.1.2.1.47.1.2.1.1.4.1|4x|4e4030 +1.3.6.1.2.1.47.1.2.1.1.4.2|4|N +1.3.6.1.2.1.47.1.2.1.1.4.3|4x|4e4031 +1.3.6.1.2.1.47.1.2.1.1.4.4|4x|4e4031303032 +1.3.6.1.2.1.47.1.2.1.1.4.5|4x|4e4031303034 +1.3.6.1.2.1.47.1.2.1.1.4.6|4x|4e4031303035 +1.3.6.1.2.1.47.1.2.1.1.4.7|4x|4e4031303033 +1.3.6.1.2.1.47.1.2.1.1.4.8|4x|4e4035 +1.3.6.1.2.1.47.1.2.1.1.4.9|4x|4e403532 +1.3.6.1.2.1.47.1.2.1.1.4.10|4x|4e403732 +1.3.6.1.2.1.47.1.2.1.1.4.11|4x|4e40313736 +1.3.6.1.2.1.47.1.2.1.1.4.12|4x|4e40313737 +1.3.6.1.2.1.47.1.2.1.1.4.13|4x|4e40313738 +1.3.6.1.2.1.47.1.2.1.1.4.14|4x|4e40313739 +1.3.6.1.2.1.47.1.2.1.1.4.15|4x|4e40313830 +1.3.6.1.2.1.47.1.2.1.1.4.16|4x|4e40313831 +1.3.6.1.2.1.47.1.2.1.1.4.17|4x|4e40313832 +1.3.6.1.2.1.47.1.2.1.1.4.18|4x|4e40313833 +1.3.6.1.2.1.47.1.2.1.1.4.19|4x|4e40313834 +1.3.6.1.2.1.47.1.2.1.1.4.20|4x|4e40313836 +1.3.6.1.2.1.47.1.2.1.1.4.21|4x|4e40313837 +1.3.6.1.2.1.47.1.2.1.1.4.22|4x|4e40313931 +1.3.6.1.2.1.47.1.2.1.1.4.23|4x|4e40313933 +1.3.6.1.2.1.47.1.2.1.1.4.24|4x|4e40323030 +1.3.6.1.2.1.47.1.2.1.1.4.25|4x|4e40323035 +1.3.6.1.2.1.47.1.2.1.1.5.1|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.2|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.3|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.4|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.5|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.6|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.7|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.8|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.9|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.10|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.11|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.12|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.13|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.14|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.15|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.16|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.17|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.18|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.19|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.20|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.21|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.22|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.23|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.24|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.5.25|4x|0ab7346400a1 +1.3.6.1.2.1.47.1.2.1.1.6.1|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.2|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.3|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.4|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.5|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.6|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.7|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.8|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.9|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.10|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.11|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.12|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.13|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.14|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.15|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.16|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.17|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.18|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.19|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.20|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.21|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.22|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.23|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.24|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.6.25|6|1.3.6.1.6.1.1 +1.3.6.1.2.1.47.1.2.1.1.7.1|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.2|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.3|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.4|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.5|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.6|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.7|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.8|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.9|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.10|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.11|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.12|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.13|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.14|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.15|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.16|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.17|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.18|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.19|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.20|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.21|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.22|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.23|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.24|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.7.25|4x|8000000903008c1e806f236c +1.3.6.1.2.1.47.1.2.1.1.8.1|4| +1.3.6.1.2.1.47.1.2.1.1.8.2|4| +1.3.6.1.2.1.47.1.2.1.1.8.3|4| +1.3.6.1.2.1.47.1.2.1.1.8.4|4| +1.3.6.1.2.1.47.1.2.1.1.8.5|4| +1.3.6.1.2.1.47.1.2.1.1.8.6|4| +1.3.6.1.2.1.47.1.2.1.1.8.7|4| +1.3.6.1.2.1.47.1.2.1.1.8.8|4| +1.3.6.1.2.1.47.1.2.1.1.8.9|4| +1.3.6.1.2.1.47.1.2.1.1.8.10|4| +1.3.6.1.2.1.47.1.2.1.1.8.11|4| +1.3.6.1.2.1.47.1.2.1.1.8.12|4| +1.3.6.1.2.1.47.1.2.1.1.8.13|4| +1.3.6.1.2.1.47.1.2.1.1.8.14|4| +1.3.6.1.2.1.47.1.2.1.1.8.15|4| +1.3.6.1.2.1.47.1.2.1.1.8.16|4| +1.3.6.1.2.1.47.1.2.1.1.8.17|4| +1.3.6.1.2.1.47.1.2.1.1.8.18|4| +1.3.6.1.2.1.47.1.2.1.1.8.19|4| +1.3.6.1.2.1.47.1.2.1.1.8.20|4| +1.3.6.1.2.1.47.1.2.1.1.8.21|4| +1.3.6.1.2.1.47.1.2.1.1.8.22|4| +1.3.6.1.2.1.47.1.2.1.1.8.23|4| +1.3.6.1.2.1.47.1.2.1.1.8.24|4| +1.3.6.1.2.1.47.1.2.1.1.8.25|4| +1.3.6.1.2.1.47.1.3.2.1.2.1041.0|6|1.3.6.1.2.1.2.2.1.1.1 +1.3.6.1.2.1.47.1.3.2.1.2.1042.0|6|1.3.6.1.2.1.2.2.1.1.2 +1.3.6.1.2.1.47.1.3.2.1.2.1043.0|6|1.3.6.1.2.1.2.2.1.1.3 +1.3.6.1.2.1.47.1.3.2.1.2.1044.0|6|1.3.6.1.2.1.2.2.1.1.4 +1.3.6.1.2.1.47.1.3.2.1.2.1333.0|6|1.3.6.1.2.1.2.2.1.1.5 +1.3.6.1.2.1.47.1.3.2.1.2.1345.0|6|1.3.6.1.2.1.2.2.1.1.6 +1.3.6.1.2.1.47.1.3.3.1.1.1.2|2|2 +1.3.6.1.2.1.47.1.3.3.1.1.2.3|2|3 +1.3.6.1.2.1.47.1.3.3.1.1.2.24|2|24 +1.3.6.1.2.1.47.1.3.3.1.1.2.1000|2|1000 +1.3.6.1.2.1.47.1.3.3.1.1.2.2000|2|2000 +1.3.6.1.2.1.47.1.3.3.1.1.2.3000|2|3000 +1.3.6.1.2.1.47.1.3.3.1.1.3.4|2|4 +1.3.6.1.2.1.47.1.3.3.1.1.4.14|2|14 +1.3.6.1.2.1.47.1.3.3.1.1.24.35|2|35 +1.3.6.1.2.1.47.1.3.3.1.1.24.36|2|36 +1.3.6.1.2.1.47.1.3.3.1.1.1000.1040|2|1040 +1.3.6.1.2.1.47.1.3.3.1.1.1000.1280|2|1280 +1.3.6.1.2.1.47.1.3.3.1.1.1040.1041|2|1041 +1.3.6.1.2.1.47.1.3.3.1.1.1040.1042|2|1042 +1.3.6.1.2.1.47.1.3.3.1.1.1040.1043|2|1043 +1.3.6.1.2.1.47.1.3.3.1.1.1040.1044|2|1044 +1.3.6.1.2.1.47.1.3.3.1.1.1280.1331|2|1331 +1.3.6.1.2.1.47.1.3.3.1.1.1280.1343|2|1343 +1.3.6.1.2.1.47.1.3.3.1.1.1331.1332|2|1332 +1.3.6.1.2.1.47.1.3.3.1.1.1332.1333|2|1333 +1.3.6.1.2.1.47.1.3.3.1.1.1343.1344|2|1344 +1.3.6.1.2.1.47.1.3.3.1.1.1344.1345|2|1345 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2001|2|2001 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2002|2|2002 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2003|2|2003 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2101|2|2101 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2102|2|2102 +1.3.6.1.2.1.47.1.3.3.1.1.2000.2104|2|2104 +1.3.6.1.2.1.47.1.3.3.1.1.3000.3026|2|3026 +1.3.6.1.2.1.47.1.4.1.0|67|4231 +1.3.6.1.2.1.51.2.1.0|66|0 +1.3.6.1.2.1.51.2.2.0|2|0 +1.3.6.1.2.1.51.2.3.0|2|0 +1.3.6.1.2.1.51.2.4.0|2|0 +1.3.6.1.2.1.51.2.5.0|2|0 +1.3.6.1.2.1.52.2.1.0|2|0 +1.3.6.1.2.1.68.1.1.0|2|1 +1.3.6.1.2.1.68.1.2.0|2|2 +1.3.6.1.2.1.68.2.1.0|65|0 +1.3.6.1.2.1.68.2.2.0|65|0 +1.3.6.1.2.1.68.2.3.0|65|0 +1.3.6.1.2.1.71.1.1.1.0|66|0 +1.3.6.1.2.1.83.1.1.1.0|2|2 +1.3.6.1.2.1.83.1.1.7.0|66|0 +1.3.6.1.2.1.88.1.1.1.0|2|60 +1.3.6.1.2.1.88.1.1.2.0|66|0 +1.3.6.1.2.1.88.1.1.3.0|66|0 +1.3.6.1.2.1.88.1.1.4.0|66|0 +1.3.6.1.2.1.88.1.1.5.0|65|0 +1.3.6.1.2.1.88.1.2.1.0|65|0 +1.3.6.1.2.1.88.1.4.1.0|65|0 +1.3.6.1.2.1.90.1.1.1.0|2|1 +1.3.6.1.2.1.90.1.1.2.0|66|0 +1.3.6.1.2.1.90.1.1.3.0|66|0 +1.3.6.1.2.1.90.1.1.4.0|66|0 +1.3.6.1.2.1.90.1.1.5.0|65|0 +1.3.6.1.2.1.92.1.1.1.0|66|500 +1.3.6.1.2.1.92.1.1.2.0|66|15 +1.3.6.1.2.1.92.1.2.1.0|65|0 +1.3.6.1.2.1.92.1.2.2.0|65|0 +1.3.6.1.2.1.97.1.2.1.0|66|0 +1.3.6.1.2.1.97.1.2.3.0|66|0 +1.3.6.1.2.1.97.1.2.5.0|66|0 +1.3.6.1.2.1.97.1.3.1.0|66|0 +1.3.6.1.2.1.97.1.4.1.0|66|0 +1.3.6.1.2.1.97.1.5.1.0|66|0 +1.3.6.1.2.1.97.1.5.3.1.1.0|2|0 +1.3.6.1.2.1.97.1.5.3.1.1.1|2|1 +1.3.6.1.2.1.97.1.5.3.1.1.2|2|2 +1.3.6.1.2.1.97.1.5.3.1.1.3|2|3 +1.3.6.1.2.1.97.1.5.3.1.1.4|2|4 +1.3.6.1.2.1.97.1.5.3.1.1.5|2|5 +1.3.6.1.2.1.97.1.5.3.1.1.6|2|6 +1.3.6.1.2.1.97.1.5.3.1.1.7|2|7 +1.3.6.1.2.1.97.1.5.3.1.1.8|2|8 +1.3.6.1.2.1.97.1.5.3.1.1.9|2|9 +1.3.6.1.2.1.97.1.5.3.1.1.10|2|10 +1.3.6.1.2.1.97.1.5.3.1.1.11|2|11 +1.3.6.1.2.1.97.1.5.3.1.1.12|2|12 +1.3.6.1.2.1.97.1.5.3.1.1.13|2|13 +1.3.6.1.2.1.97.1.5.3.1.1.14|2|14 +1.3.6.1.2.1.97.1.5.3.1.1.15|2|15 +1.3.6.1.2.1.97.1.5.3.1.1.16|2|16 +1.3.6.1.2.1.97.1.5.3.1.1.17|2|17 +1.3.6.1.2.1.97.1.5.3.1.1.18|2|18 +1.3.6.1.2.1.97.1.5.3.1.1.19|2|19 +1.3.6.1.2.1.97.1.5.3.1.1.20|2|20 +1.3.6.1.2.1.97.1.5.3.1.1.21|2|21 +1.3.6.1.2.1.97.1.5.3.1.1.22|2|22 +1.3.6.1.2.1.97.1.5.3.1.1.23|2|23 +1.3.6.1.2.1.97.1.5.3.1.1.24|2|24 +1.3.6.1.2.1.97.1.5.3.1.1.25|2|25 +1.3.6.1.2.1.97.1.5.3.1.1.26|2|26 +1.3.6.1.2.1.97.1.5.3.1.1.27|2|27 +1.3.6.1.2.1.97.1.5.3.1.1.28|2|28 +1.3.6.1.2.1.97.1.5.3.1.1.29|2|29 +1.3.6.1.2.1.97.1.5.3.1.1.30|2|30 +1.3.6.1.2.1.97.1.5.3.1.1.31|2|31 +1.3.6.1.2.1.97.1.5.3.1.1.32|2|32 +1.3.6.1.2.1.97.1.5.3.1.1.33|2|33 +1.3.6.1.2.1.97.1.5.3.1.1.34|2|34 +1.3.6.1.2.1.97.1.5.3.1.1.35|2|35 +1.3.6.1.2.1.97.1.5.3.1.1.36|2|36 +1.3.6.1.2.1.97.1.5.3.1.1.37|2|37 +1.3.6.1.2.1.97.1.5.3.1.1.38|2|38 +1.3.6.1.2.1.97.1.5.3.1.1.39|2|39 +1.3.6.1.2.1.97.1.5.3.1.1.40|2|40 +1.3.6.1.2.1.97.1.5.3.1.1.41|2|41 +1.3.6.1.2.1.97.1.5.3.1.1.42|2|42 +1.3.6.1.2.1.97.1.5.3.1.1.43|2|43 +1.3.6.1.2.1.97.1.5.3.1.1.44|2|44 +1.3.6.1.2.1.97.1.5.3.1.1.45|2|45 +1.3.6.1.2.1.97.1.5.3.1.1.46|2|46 +1.3.6.1.2.1.97.1.5.3.1.1.47|2|47 +1.3.6.1.2.1.97.1.5.3.1.1.48|2|48 +1.3.6.1.2.1.97.1.5.3.1.1.49|2|49 +1.3.6.1.2.1.97.1.5.3.1.1.50|2|50 +1.3.6.1.2.1.97.1.5.3.1.1.51|2|51 +1.3.6.1.2.1.97.1.5.3.1.1.52|2|52 +1.3.6.1.2.1.97.1.5.3.1.1.53|2|53 +1.3.6.1.2.1.97.1.5.3.1.1.54|2|54 +1.3.6.1.2.1.97.1.5.3.1.1.55|2|55 +1.3.6.1.2.1.97.1.5.3.1.1.56|2|56 +1.3.6.1.2.1.97.1.5.3.1.1.57|2|57 +1.3.6.1.2.1.97.1.5.3.1.1.58|2|58 +1.3.6.1.2.1.97.1.5.3.1.1.59|2|59 +1.3.6.1.2.1.97.1.5.3.1.1.60|2|60 +1.3.6.1.2.1.97.1.5.3.1.1.61|2|61 +1.3.6.1.2.1.97.1.5.3.1.1.62|2|62 +1.3.6.1.2.1.97.1.5.3.1.1.63|2|63 +1.3.6.1.2.1.97.1.5.4.0|66|0 +1.3.6.1.2.1.97.1.6.1.0|66|0 +1.3.6.1.2.1.97.1.6.3.0|66|0 +1.3.6.1.2.1.97.1.7.1.0|66|0 +1.3.6.1.2.1.97.1.8.1.0|66|0 +1.3.6.1.2.1.97.1.8.3.0|66|0 +1.3.6.1.2.1.97.1.8.5.0|66|0 +1.3.6.1.2.1.99.1.1.1.1.2001|2|8 +1.3.6.1.2.1.99.1.1.1.1.2002|2|8 +1.3.6.1.2.1.99.1.1.1.1.2003|2|8 +1.3.6.1.2.1.99.1.1.1.2.2001|2|9 +1.3.6.1.2.1.99.1.1.1.2.2002|2|9 +1.3.6.1.2.1.99.1.1.1.2.2003|2|9 +1.3.6.1.2.1.99.1.1.1.3.2001|2|0 +1.3.6.1.2.1.99.1.1.1.3.2002|2|0 +1.3.6.1.2.1.99.1.1.1.3.2003|2|0 +1.3.6.1.2.1.99.1.1.1.4.2001|2|39 +1.3.6.1.2.1.99.1.1.1.4.2002|2|37 +1.3.6.1.2.1.99.1.1.1.4.2003|2|55 +1.3.6.1.2.1.99.1.1.1.5.2001|2|1 +1.3.6.1.2.1.99.1.1.1.5.2002|2|1 +1.3.6.1.2.1.99.1.1.1.5.2003|2|1 +1.3.6.1.2.1.99.1.1.1.6.2001|4|Celsius +1.3.6.1.2.1.99.1.1.1.6.2002|4|Celsius +1.3.6.1.2.1.99.1.1.1.6.2003|4|Celsius +1.3.6.1.2.1.99.1.1.1.7.2001|67|454332203 +1.3.6.1.2.1.99.1.1.1.7.2002|67|454332203 +1.3.6.1.2.1.99.1.1.1.7.2003|67|454332203 +1.3.6.1.2.1.99.1.1.1.8.2001|66|60000 +1.3.6.1.2.1.99.1.1.1.8.2002|66|60000 +1.3.6.1.2.1.99.1.1.1.8.2003|66|60000 +1.3.6.1.2.1.123.1.5.0|66|0 +1.3.6.1.2.1.123.1.7.0|66|0 +1.3.6.1.2.1.123.1.12.1.1.1.0|70|0 +1.3.6.1.2.1.123.1.12.1.1.2.0|70|0 +1.3.6.1.2.1.123.1.12.1.1.3.0|70|0 +1.3.6.1.2.1.123.1.12.1.1.4.0|70|0 +1.3.6.1.2.1.123.1.12.2.1.2.0.1|70|0 +1.3.6.1.2.1.123.1.12.2.1.2.0.6|70|0 +1.3.6.1.2.1.123.1.12.2.1.2.0.17|70|0 +1.3.6.1.2.1.123.1.12.2.1.2.0.47|70|0 +1.3.6.1.2.1.123.1.12.2.1.3.0.1|70|0 +1.3.6.1.2.1.123.1.12.2.1.3.0.6|70|0 +1.3.6.1.2.1.123.1.12.2.1.3.0.17|70|0 +1.3.6.1.2.1.123.1.12.2.1.3.0.47|70|0 +1.3.6.1.2.1.123.1.12.2.1.4.0.1|70|0 +1.3.6.1.2.1.123.1.12.2.1.4.0.6|70|0 +1.3.6.1.2.1.123.1.12.2.1.4.0.17|70|0 +1.3.6.1.2.1.123.1.12.2.1.4.0.47|70|0 +1.3.6.1.2.1.123.1.12.2.1.5.0.1|70|0 +1.3.6.1.2.1.123.1.12.2.1.5.0.6|70|0 +1.3.6.1.2.1.123.1.12.2.1.5.0.17|70|0 +1.3.6.1.2.1.123.1.12.2.1.5.0.47|70|0 +1.3.6.1.2.1.131.1.1.1.1.2|4x|07e8070c091a29002b0800 +1.3.6.1.2.1.131.1.1.1.1.3|4x|07e8070c091a29002b0800 +1.3.6.1.2.1.131.1.1.1.1.4|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.14|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.24|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.35|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.36|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.1000|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.1.1040|4x|07e8070c091a3a002b0800 +1.3.6.1.2.1.131.1.1.1.1.1280|4x|07e8070c091a3a002b0800 +1.3.6.1.2.1.131.1.1.1.1.1331|4x|07e8070c091b06002b0800 +1.3.6.1.2.1.131.1.1.1.1.1332|4x|07e8070c091b06002b0800 +1.3.6.1.2.1.131.1.1.1.1.1343|4x|07e8070c091b06002b0800 +1.3.6.1.2.1.131.1.1.1.1.1344|4x|07e8070c091b06002b0800 +1.3.6.1.2.1.131.1.1.1.1.2000|4x|07e8070c091a35002b0800 +1.3.6.1.2.1.131.1.1.1.1.3000|4x|07e8070c091a2b002b0800 +1.3.6.1.2.1.131.1.1.1.2.2|2|4 +1.3.6.1.2.1.131.1.1.1.2.3|2|4 +1.3.6.1.2.1.131.1.1.1.2.4|2|4 +1.3.6.1.2.1.131.1.1.1.2.14|2|4 +1.3.6.1.2.1.131.1.1.1.2.24|2|4 +1.3.6.1.2.1.131.1.1.1.2.35|2|4 +1.3.6.1.2.1.131.1.1.1.2.36|2|4 +1.3.6.1.2.1.131.1.1.1.2.1000|2|4 +1.3.6.1.2.1.131.1.1.1.2.1040|2|4 +1.3.6.1.2.1.131.1.1.1.2.1280|2|4 +1.3.6.1.2.1.131.1.1.1.2.1331|2|4 +1.3.6.1.2.1.131.1.1.1.2.1332|2|4 +1.3.6.1.2.1.131.1.1.1.2.1343|2|4 +1.3.6.1.2.1.131.1.1.1.2.1344|2|4 +1.3.6.1.2.1.131.1.1.1.2.2000|2|4 +1.3.6.1.2.1.131.1.1.1.2.3000|2|4 +1.3.6.1.2.1.131.1.1.1.3.2|2|3 +1.3.6.1.2.1.131.1.1.1.3.3|2|3 +1.3.6.1.2.1.131.1.1.1.3.4|2|3 +1.3.6.1.2.1.131.1.1.1.3.14|2|3 +1.3.6.1.2.1.131.1.1.1.3.24|2|3 +1.3.6.1.2.1.131.1.1.1.3.35|2|3 +1.3.6.1.2.1.131.1.1.1.3.36|2|3 +1.3.6.1.2.1.131.1.1.1.3.1000|2|3 +1.3.6.1.2.1.131.1.1.1.3.1040|2|3 +1.3.6.1.2.1.131.1.1.1.3.1280|2|3 +1.3.6.1.2.1.131.1.1.1.3.1331|2|3 +1.3.6.1.2.1.131.1.1.1.3.1332|2|3 +1.3.6.1.2.1.131.1.1.1.3.1343|2|3 +1.3.6.1.2.1.131.1.1.1.3.1344|2|3 +1.3.6.1.2.1.131.1.1.1.3.2000|2|3 +1.3.6.1.2.1.131.1.1.1.3.3000|2|3 +1.3.6.1.2.1.131.1.1.1.4.2|2|4 +1.3.6.1.2.1.131.1.1.1.4.3|2|4 +1.3.6.1.2.1.131.1.1.1.4.4|2|4 +1.3.6.1.2.1.131.1.1.1.4.14|2|4 +1.3.6.1.2.1.131.1.1.1.4.24|2|4 +1.3.6.1.2.1.131.1.1.1.4.35|2|4 +1.3.6.1.2.1.131.1.1.1.4.36|2|4 +1.3.6.1.2.1.131.1.1.1.4.1000|2|4 +1.3.6.1.2.1.131.1.1.1.4.1040|2|4 +1.3.6.1.2.1.131.1.1.1.4.1280|2|4 +1.3.6.1.2.1.131.1.1.1.4.1331|2|4 +1.3.6.1.2.1.131.1.1.1.4.1332|2|4 +1.3.6.1.2.1.131.1.1.1.4.1343|2|4 +1.3.6.1.2.1.131.1.1.1.4.1344|2|4 +1.3.6.1.2.1.131.1.1.1.4.2000|2|4 +1.3.6.1.2.1.131.1.1.1.4.3000|2|4 +1.3.6.1.2.1.131.1.1.1.5.2|4x|00 +1.3.6.1.2.1.131.1.1.1.5.3|4x|00 +1.3.6.1.2.1.131.1.1.1.5.4|4x|00 +1.3.6.1.2.1.131.1.1.1.5.14|4x|00 +1.3.6.1.2.1.131.1.1.1.5.24|4x|00 +1.3.6.1.2.1.131.1.1.1.5.35|4x|00 +1.3.6.1.2.1.131.1.1.1.5.36|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1000|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1040|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1280|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1331|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1332|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1343|4x|00 +1.3.6.1.2.1.131.1.1.1.5.1344|4x|00 +1.3.6.1.2.1.131.1.1.1.5.2000|4x|00 +1.3.6.1.2.1.131.1.1.1.5.3000|4x|00 +1.3.6.1.2.1.131.1.1.1.6.2|2|4 +1.3.6.1.2.1.131.1.1.1.6.3|2|4 +1.3.6.1.2.1.131.1.1.1.6.4|2|4 +1.3.6.1.2.1.131.1.1.1.6.14|2|4 +1.3.6.1.2.1.131.1.1.1.6.24|2|4 +1.3.6.1.2.1.131.1.1.1.6.35|2|4 +1.3.6.1.2.1.131.1.1.1.6.36|2|4 +1.3.6.1.2.1.131.1.1.1.6.1000|2|4 +1.3.6.1.2.1.131.1.1.1.6.1040|2|4 +1.3.6.1.2.1.131.1.1.1.6.1280|2|4 +1.3.6.1.2.1.131.1.1.1.6.1331|2|4 +1.3.6.1.2.1.131.1.1.1.6.1332|2|4 +1.3.6.1.2.1.131.1.1.1.6.1343|2|4 +1.3.6.1.2.1.131.1.1.1.6.1344|2|4 +1.3.6.1.2.1.131.1.1.1.6.2000|2|1 +1.3.6.1.2.1.131.1.1.1.6.3000|2|4 +1.3.6.1.2.1.197.1.1.1.0|4x|436973636f2d6e74707634 +1.3.6.1.2.1.197.1.1.2.0|4x|436973636f2d6e747076342d312e30 +1.3.6.1.2.1.197.1.1.3.0|4|CISCO +1.3.6.1.2.1.197.1.1.4.0|4x|436973636f20494f53202f204b41544152 +1.3.6.1.2.1.197.1.1.5.0|66|4016 +1.3.6.1.2.1.197.1.1.6.0|2|-10 +1.3.6.1.2.1.197.1.1.7.0|4x|302e303232342073 +1.3.6.1.2.1.197.1.2.1.0|2|6 +1.3.6.1.2.1.197.1.2.2.0|66|3 +1.3.6.1.2.1.197.1.2.3.0|66|15495 +1.3.6.1.2.1.197.1.2.4.0|4x|0ab73401 +1.3.6.1.2.1.197.1.2.5.0|4x|322e35303030206d73 +1.3.6.1.2.1.197.1.2.6.0|66|1 +1.3.6.1.2.1.197.1.2.7.0|4x|32322e343835206d73 +1.3.6.1.2.1.197.1.2.8.0|67|454336400 +1.3.6.1.2.1.197.1.2.9.0|4x|32333a32393a33332e31313220504854204d6f6e2053657020322032303234 +1.3.6.1.2.1.197.1.2.10.0|4|0 +1.3.6.1.2.1.197.1.2.11.0|2|0 +1.3.6.1.2.1.197.1.2.12.0|65|37916 +1.3.6.1.2.1.197.1.2.13.0|65|37917 +1.3.6.1.2.1.197.1.2.14.0|65|0 +1.3.6.1.2.1.197.1.2.15.0|65|0 +1.3.6.1.2.1.197.1.2.16.0|65|0 +1.3.6.1.2.1.197.1.2.17.1.2.1|65|0 +1.3.6.1.2.1.197.1.2.17.1.2.2|65|0 +1.3.6.1.2.1.197.1.2.17.1.2.3|65|37916 +1.3.6.1.2.1.197.1.2.17.1.2.4|65|0 +1.3.6.1.2.1.197.1.2.17.1.2.5|65|0 +1.3.6.1.2.1.197.1.2.17.1.2.6|65|0 +1.3.6.1.2.1.197.1.2.17.1.3.1|65|0 +1.3.6.1.2.1.197.1.2.17.1.3.2|65|0 +1.3.6.1.2.1.197.1.2.17.1.3.3|65|37917 +1.3.6.1.2.1.197.1.2.17.1.3.4|65|0 +1.3.6.1.2.1.197.1.2.17.1.3.5|65|0 +1.3.6.1.2.1.197.1.2.17.1.3.6|65|0 +1.3.6.1.2.1.197.1.3.1.1.2.15495|4x|0ab73401 +1.3.6.1.2.1.197.1.3.1.1.3.15495|4x|3231362e3233392e33352e31322020 +1.3.6.1.2.1.197.1.3.1.1.4.15495|2|1 +1.3.6.1.2.1.197.1.3.1.1.5.15495|4x|0ab73401 +1.3.6.1.2.1.197.1.3.1.1.6.15495|4x|322e353030206d73 +1.3.6.1.2.1.197.1.3.1.1.7.15495|66|2 +1.3.6.1.2.1.197.1.3.1.1.8.15495|4x|302e3937206d73 +1.3.6.1.2.1.197.1.3.1.1.9.15495|4x|312e303030206d73 +1.3.6.1.2.1.197.1.3.1.1.10.15495|4x|312e393736 +1.3.6.1.2.1.197.1.3.2.1.1.15495|65|37916 +1.3.6.1.2.1.197.1.3.2.1.2.15495|65|37917 +1.3.6.1.2.1.197.1.3.2.1.3.15495|65|0 +1.3.6.1.2.1.207.1.2.1.0|70|0 +1.3.6.1.2.1.207.1.2.2.0|70|0 +1.3.6.1.2.1.207.1.2.3.0|70|0 +1.3.6.1.2.1.207.1.2.4.0|67|0 +1.3.6.1.3.61.1.1.1.0|2|60 +1.3.6.1.3.61.1.1.12.1.2.1|64x|00000000 +1.3.6.1.3.61.1.1.12.1.3.1|67|0 +1.3.6.1.3.61.1.1.12.1.4.1|2|0 +1.3.6.1.3.61.1.1.12.1.5.1|2|2 +1.3.6.1.3.92.1.1.1.0|2|2 +1.3.6.1.3.92.1.1.2.0|67|36000 +1.3.6.1.3.92.1.1.3.0|66|0 +1.3.6.1.3.92.1.1.9.0|2|30 +1.3.6.1.3.95.1.1.0|66|0 +1.3.6.1.3.95.1.2.0|66|0 +1.3.6.1.3.95.1.3.0|4x|00 +1.3.6.1.3.95.1.4.0|66|65535 +1.3.6.1.3.95.2.1.0|2|0 +1.3.6.1.3.95.2.3.0|66|0 +1.3.6.1.3.95.2.5.0|66|0 +1.3.6.1.3.95.2.10.0|2|2 +1.3.6.1.3.96.1.1.1.2.0|66|0 +1.3.6.1.3.96.1.1.1.3.0|66|0 +1.3.6.1.3.96.1.1.1.4.0|66|0 +1.3.6.1.3.96.1.1.1.5.0|66|0 +1.3.6.1.3.96.1.1.1.6.0|2|0 +1.3.6.1.3.96.1.1.1.7.0|2|0 +1.3.6.1.3.96.1.1.1.8.0|2|0 +1.3.6.1.3.96.1.1.1.9.0|2|0 +1.3.6.1.3.96.1.1.1.10.0|4x|80 +1.3.6.1.3.96.1.1.1.11.0|2|2 +1.3.6.1.3.96.1.2.1.1.0|66|0 +1.3.6.1.3.96.1.2.1.2.0|65|0 +1.3.6.1.3.96.1.2.1.3.0|65|0 +1.3.6.1.3.96.1.2.1.4.0|65|0 +1.3.6.1.3.96.1.2.1.5.0|66|0 +1.3.6.1.3.96.1.2.1.6.0|65|0 +1.3.6.1.3.96.1.2.1.7.0|65|0 +1.3.6.1.3.96.1.2.1.8.0|65|0 +1.3.6.1.3.96.1.5.0|2|0 +1.3.6.1.3.96.1.8.0|2|0 +1.3.6.1.3.96.1.10.0|2|6 +1.3.6.1.3.96.1.11.0|2|0 +1.3.6.1.3.96.1.13.0|2|0 +1.3.6.1.3.96.1.15.0|2|2 +1.3.6.1.3.96.1.16.0|2|2 +1.3.6.1.3.96.1.17.0|2|2 +1.3.6.1.3.118.1.1.1.0|66|1 +1.3.6.1.3.118.1.1.2.0|66|0 +1.3.6.1.3.118.1.1.3.0|66|1 +1.3.6.1.3.118.1.1.4.0|2|2 +1.3.6.1.3.118.1.1.5.0|66|0 +1.3.6.1.3.118.1.2.1.1.2.9.77.103.109.116.45.105.110.116.102.7|2|1 +1.3.6.1.3.118.1.2.1.1.3.9.77.103.109.116.45.105.110.116.102.7|2|2 +1.3.6.1.3.118.1.2.1.1.4.9.77.103.109.116.45.105.110.116.102.7|4x|40 +1.3.6.1.3.118.1.2.1.1.5.9.77.103.109.116.45.105.110.116.102.7|2|2 +1.3.6.1.3.118.1.2.1.1.6.9.77.103.109.116.45.105.110.116.102.7|2|1 +1.3.6.1.3.118.1.2.2.1.2.9.77.103.109.116.45.105.110.116.102|4| +1.3.6.1.3.118.1.2.2.1.3.9.77.103.109.116.45.105.110.116.102|4| +1.3.6.1.3.118.1.2.2.1.4.9.77.103.109.116.45.105.110.116.102|67|1538 +1.3.6.1.3.118.1.2.2.1.5.9.77.103.109.116.45.105.110.116.102|2|2 +1.3.6.1.3.118.1.2.2.1.6.9.77.103.109.116.45.105.110.116.102|66|0 +1.3.6.1.3.118.1.2.2.1.7.9.77.103.109.116.45.105.110.116.102|66|1 +1.3.6.1.3.118.1.2.2.1.8.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.3.118.1.2.2.1.9.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.3.118.1.2.2.1.10.9.77.103.109.116.45.105.110.116.102|66|4294967295 +1.3.6.1.3.118.1.2.2.1.11.9.77.103.109.116.45.105.110.116.102|67|1652 +1.3.6.1.3.118.1.2.2.1.12.9.77.103.109.116.45.105.110.116.102|2|1 +1.3.6.1.3.118.1.2.2.1.13.9.77.103.109.116.45.105.110.116.102|2|2 +1.3.6.1.3.118.1.2.6.1.1.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.3.118.1.2.6.1.2.9.77.103.109.116.45.105.110.116.102|66|0 +1.3.6.1.3.118.1.3.1.1.1.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.3.118.1.3.1.1.2.9.77.103.109.116.45.105.110.116.102|65|0 +1.3.6.1.3.118.1.3.1.1.3.9.77.103.109.116.45.105.110.116.102|66|0 +1.3.6.1.4.1.9.2.1.1.0|4x|0d2e312e332e362e312e342e312e392e322e312e322e30203d20535452494e473a2022506f7765724f6e +1.3.6.1.4.1.9.2.1.3.0|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.2.1.4.0|4x|696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.2.1.5.0|64x|0ab72557 +1.3.6.1.4.1.9.2.1.6.0|64x|00000000 +1.3.6.1.4.1.9.2.1.8.0|2|1220335420 +1.3.6.1.4.1.9.2.1.9.0|2|1306 +1.3.6.1.4.1.9.2.1.10.0|2|1000 +1.3.6.1.4.1.9.2.1.11.0|2|55558095 +1.3.6.1.4.1.9.2.1.12.0|2|0 +1.3.6.1.4.1.9.2.1.13.0|2|0 +1.3.6.1.4.1.9.2.1.14.0|2|104 +1.3.6.1.4.1.9.2.1.15.0|2|1200 +1.3.6.1.4.1.9.2.1.16.0|2|1200 +1.3.6.1.4.1.9.2.1.17.0|2|2500 +1.3.6.1.4.1.9.2.1.18.0|2|16006928 +1.3.6.1.4.1.9.2.1.19.0|2|0 +1.3.6.1.4.1.9.2.1.20.0|2|0 +1.3.6.1.4.1.9.2.1.21.0|2|0 +1.3.6.1.4.1.9.2.1.22.0|2|600 +1.3.6.1.4.1.9.2.1.23.0|2|900 +1.3.6.1.4.1.9.2.1.24.0|2|898 +1.3.6.1.4.1.9.2.1.25.0|2|2000 +1.3.6.1.4.1.9.2.1.26.0|2|11066775 +1.3.6.1.4.1.9.2.1.27.0|2|0 +1.3.6.1.4.1.9.2.1.28.0|2|0 +1.3.6.1.4.1.9.2.1.29.0|2|0 +1.3.6.1.4.1.9.2.1.30.0|2|1536 +1.3.6.1.4.1.9.2.1.31.0|2|900 +1.3.6.1.4.1.9.2.1.32.0|2|899 +1.3.6.1.4.1.9.2.1.33.0|2|1800 +1.3.6.1.4.1.9.2.1.34.0|2|5073990 +1.3.6.1.4.1.9.2.1.35.0|2|0 +1.3.6.1.4.1.9.2.1.36.0|2|1 +1.3.6.1.4.1.9.2.1.37.0|2|1 +1.3.6.1.4.1.9.2.1.38.0|2|5024 +1.3.6.1.4.1.9.2.1.39.0|2|100 +1.3.6.1.4.1.9.2.1.40.0|2|100 +1.3.6.1.4.1.9.2.1.41.0|2|300 +1.3.6.1.4.1.9.2.1.42.0|2|0 +1.3.6.1.4.1.9.2.1.43.0|2|0 +1.3.6.1.4.1.9.2.1.44.0|2|1 +1.3.6.1.4.1.9.2.1.45.0|2|1 +1.3.6.1.4.1.9.2.1.46.0|2|0 +1.3.6.1.4.1.9.2.1.47.0|2|0 +1.3.6.1.4.1.9.2.1.48.0|64x|00000000 +1.3.6.1.4.1.9.2.1.49.0|4| +1.3.6.1.4.1.9.2.1.51.0|64x|00000000 +1.3.6.1.4.1.9.2.1.52.0|4| +1.3.6.1.4.1.9.2.1.56.0|2|1 +1.3.6.1.4.1.9.2.1.57.0|2|1 +1.3.6.1.4.1.9.2.1.58.0|2|1 +1.3.6.1.4.1.9.2.1.59.0|2|4920 +1.3.6.1.4.1.9.2.1.60.0|2|0 +1.3.6.1.4.1.9.2.1.61.0|4x|636973636f2053797374656d732c20496e632e3137302057657374205461736d616e2044722e53616e204a6f73652c204341202039353133342d3137303620552e532e412e205068202b312d3430382d3532362d3430303020437573746f6d6572207365727669636520312d3830302d3535332d36333837206f72202b312d3430382d3532362d37323038203234485220456d657267656e637920312d3830302d3535332d32343437206f72202b312d3430382d3532362d3732303920456d61696c20416464726573732074616340636973636f2e636f6d20576f726c6420576964652057656220687474703a2f2f7777772e636973636f2e636f6d +1.3.6.1.4.1.9.2.1.62.0|2|18024 +1.3.6.1.4.1.9.2.1.63.0|2|20 +1.3.6.1.4.1.9.2.1.64.0|2|20 +1.3.6.1.4.1.9.2.1.65.0|2|33 +1.3.6.1.4.1.9.2.1.66.0|2|1 +1.3.6.1.4.1.9.2.1.67.0|2|0 +1.3.6.1.4.1.9.2.1.68.0|2|1 +1.3.6.1.4.1.9.2.1.69.0|2|1 +1.3.6.1.4.1.9.2.1.70.0|2|0 +1.3.6.1.4.1.9.2.1.71.0|2|0 +1.3.6.1.4.1.9.2.1.72.0|64x|00000000 +1.3.6.1.4.1.9.2.1.73.0|4x|626f6f74666c6173683a7061636b616765732e636f6e66 +1.3.6.1.4.1.9.2.1.74.0|2|3 +1.3.6.1.4.1.9.2.2.1.1.1.1|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.4.1.9.2.2.1.1.1.2|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.4.1.9.2.2.1.1.1.3|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.4.1.9.2.2.1.1.1.4|4x|4255494c542d494e2d3478325f354745 +1.3.6.1.4.1.9.2.2.1.1.1.5|4x|4255494c542d494e2d3278313047452d46 +1.3.6.1.4.1.9.2.2.1.1.1.6|4x|4255494c542d494e2d3278313047452d46 +1.3.6.1.4.1.9.2.2.1.1.1.7|4x|5250206d616e6167656d656e7420706f7274 +1.3.6.1.4.1.9.2.2.1.1.1.8|4x|566f49502d4e756c6c +1.3.6.1.4.1.9.2.2.1.1.1.9|4|Unknown +1.3.6.1.4.1.9.2.2.1.1.1.10|4x|45746865726e657420535649 +1.3.6.1.4.1.9.2.2.1.1.1.11|4x|45746865726e657420535649 +1.3.6.1.4.1.9.2.2.1.1.1.12|4|EtherChannel +1.3.6.1.4.1.9.2.2.1.1.2.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.5|2|1 +1.3.6.1.4.1.9.2.2.1.1.2.6|2|1 +1.3.6.1.4.1.9.2.2.1.1.2.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.8|2|1 +1.3.6.1.4.1.9.2.2.1.1.2.9|2|1 +1.3.6.1.4.1.9.2.2.1.1.2.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.2.11|2|1 +1.3.6.1.4.1.9.2.2.1.1.2.12|2|1 +1.3.6.1.4.1.9.2.2.1.1.3.1|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.2|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.3|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.4|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.5|2|16882 +1.3.6.1.4.1.9.2.2.1.1.3.6|2|18922 +1.3.6.1.4.1.9.2.2.1.1.3.7|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.8|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.9|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.10|2|-1 +1.3.6.1.4.1.9.2.2.1.1.3.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.3.12|2|20852 +1.3.6.1.4.1.9.2.2.1.1.4.1|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.2|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.3|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.4|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.5|2|6524 +1.3.6.1.4.1.9.2.2.1.1.4.6|2|5215 +1.3.6.1.4.1.9.2.2.1.1.4.7|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.8|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.9|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.10|2|-1 +1.3.6.1.4.1.9.2.2.1.1.4.11|2|7 +1.3.6.1.4.1.9.2.2.1.1.4.12|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.1|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.2|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.3|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.4|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.5|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.6|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.7|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.8|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.9|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.10|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.11|2|-1 +1.3.6.1.4.1.9.2.2.1.1.5.12|2|-1 +1.3.6.1.4.1.9.2.2.1.1.6.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.5|2|320000 +1.3.6.1.4.1.9.2.2.1.1.6.6|2|1798000 +1.3.6.1.4.1.9.2.2.1.1.6.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.6.11|2|351000 +1.3.6.1.4.1.9.2.2.1.1.6.12|2|2033000 +1.3.6.1.4.1.9.2.2.1.1.7.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.5|2|120 +1.3.6.1.4.1.9.2.2.1.1.7.6|2|282 +1.3.6.1.4.1.9.2.2.1.1.7.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.7.11|2|137 +1.3.6.1.4.1.9.2.2.1.1.7.12|2|393 +1.3.6.1.4.1.9.2.2.1.1.8.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.5|2|450000 +1.3.6.1.4.1.9.2.2.1.1.8.6|2|1616000 +1.3.6.1.4.1.9.2.2.1.1.8.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.8.11|2|1865000 +1.3.6.1.4.1.9.2.2.1.1.8.12|2|1985000 +1.3.6.1.4.1.9.2.2.1.1.9.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.5|2|125 +1.3.6.1.4.1.9.2.2.1.1.9.6|2|208 +1.3.6.1.4.1.9.2.2.1.1.9.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.9.11|2|239 +1.3.6.1.4.1.9.2.2.1.1.9.12|2|322 +1.3.6.1.4.1.9.2.2.1.1.10.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.10.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.11.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.12.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.13.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.14.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.15.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.16.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.17.1|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.2|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.3|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.4|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.5|2|2 +1.3.6.1.4.1.9.2.2.1.1.17.6|2|2 +1.3.6.1.4.1.9.2.2.1.1.17.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.17.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.17.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.17.10|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.11|2|1 +1.3.6.1.4.1.9.2.2.1.1.17.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.18.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.7|2|1 +1.3.6.1.4.1.9.2.2.1.1.19.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.9|2|1 +1.3.6.1.4.1.9.2.2.1.1.19.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.19.12|2|1 +1.3.6.1.4.1.9.2.2.1.1.20.1|4| +1.3.6.1.4.1.9.2.2.1.1.20.2|4| +1.3.6.1.4.1.9.2.2.1.1.20.3|4| +1.3.6.1.4.1.9.2.2.1.1.20.4|4| +1.3.6.1.4.1.9.2.2.1.1.20.5|4|up +1.3.6.1.4.1.9.2.2.1.1.20.6|4|up +1.3.6.1.4.1.9.2.2.1.1.20.7|4|down +1.3.6.1.4.1.9.2.2.1.1.20.8|4|up +1.3.6.1.4.1.9.2.2.1.1.20.9|4| +1.3.6.1.4.1.9.2.2.1.1.20.10|4|down +1.3.6.1.4.1.9.2.2.1.1.20.11|4|up +1.3.6.1.4.1.9.2.2.1.1.20.12|4|up +1.3.6.1.4.1.9.2.2.1.1.21.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.5|2|5 +1.3.6.1.4.1.9.2.2.1.1.21.6|2|3 +1.3.6.1.4.1.9.2.2.1.1.21.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.21.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.22.1|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.2|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.3|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.4|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.5|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.6|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.7|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.8|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.22.10|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.11|2|255 +1.3.6.1.4.1.9.2.2.1.1.22.12|2|255 +1.3.6.1.4.1.9.2.2.1.1.23.1|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.2|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.3|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.4|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.5|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.6|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.7|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.23.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.23.10|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.11|2|10 +1.3.6.1.4.1.9.2.2.1.1.23.12|2|10 +1.3.6.1.4.1.9.2.2.1.1.24.1|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.2|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.3|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.4|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.5|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.6|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.7|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.8|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.24.10|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.11|2|1 +1.3.6.1.4.1.9.2.2.1.1.24.12|2|1 +1.3.6.1.4.1.9.2.2.1.1.25.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.25.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.26.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.1|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.2|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.3|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.4|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.5|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.6|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.7|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.8|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.9|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.10|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.11|2|0 +1.3.6.1.4.1.9.2.2.1.1.27.12|2|0 +1.3.6.1.4.1.9.2.2.1.1.28.1|4| +1.3.6.1.4.1.9.2.2.1.1.28.2|4| +1.3.6.1.4.1.9.2.2.1.1.28.3|4| +1.3.6.1.4.1.9.2.2.1.1.28.4|4| +1.3.6.1.4.1.9.2.2.1.1.28.5|4x|2a2a2a544f204d41522d434f522d53572d312054656e20322f302f392a2a2a +1.3.6.1.4.1.9.2.2.1.1.28.6|4x|2a2a2a544f204d41522d434f522d53572d312054656e20312f302f392a2a2a +1.3.6.1.4.1.9.2.2.1.1.28.7|4| +1.3.6.1.4.1.9.2.2.1.1.28.8|4| +1.3.6.1.4.1.9.2.2.1.1.28.9|4| +1.3.6.1.4.1.9.2.2.1.1.28.10|4| +1.3.6.1.4.1.9.2.2.1.1.28.11|4| +1.3.6.1.4.1.9.2.2.1.1.28.12|4x|2a2a2a544f204d41522d434f522d53572d312a2a2a +1.3.6.1.4.1.9.2.2.1.1.30.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.30.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.5|65|551633 +1.3.6.1.4.1.9.2.2.1.1.31.6|65|551656 +1.3.6.1.4.1.9.2.2.1.1.31.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.31.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.32.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.5|65|125170370 +1.3.6.1.4.1.9.2.2.1.1.33.6|65|125166026 +1.3.6.1.4.1.9.2.2.1.1.33.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.33.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.5|65|3136349120 +1.3.6.1.4.1.9.2.2.1.1.34.6|65|3224093722 +1.3.6.1.4.1.9.2.2.1.1.34.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.34.11|65|3423383856 +1.3.6.1.4.1.9.2.2.1.1.34.12|65|2065710934 +1.3.6.1.4.1.9.2.2.1.1.35.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.5|65|1522049105 +1.3.6.1.4.1.9.2.2.1.1.35.6|65|151931782 +1.3.6.1.4.1.9.2.2.1.1.35.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.35.11|65|2787662595 +1.3.6.1.4.1.9.2.2.1.1.35.12|65|1672919045 +1.3.6.1.4.1.9.2.2.1.1.36.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.5|65|1543118624 +1.3.6.1.4.1.9.2.2.1.1.36.6|65|2007361852 +1.3.6.1.4.1.9.2.2.1.1.36.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.36.11|65|795329117 +1.3.6.1.4.1.9.2.2.1.1.36.12|65|3596255532 +1.3.6.1.4.1.9.2.2.1.1.37.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.5|65|1458044886 +1.3.6.1.4.1.9.2.2.1.1.37.6|65|953511062 +1.3.6.1.4.1.9.2.2.1.1.37.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.37.11|65|3763509220 +1.3.6.1.4.1.9.2.2.1.1.37.12|65|2319986358 +1.3.6.1.4.1.9.2.2.1.1.38.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.5|65|3136349120 +1.3.6.1.4.1.9.2.2.1.1.38.6|65|3224093722 +1.3.6.1.4.1.9.2.2.1.1.38.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.38.11|65|8448264 +1.3.6.1.4.1.9.2.2.1.1.38.12|65|130134987 +1.3.6.1.4.1.9.2.2.1.1.39.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.5|65|8699013 +1.3.6.1.4.1.9.2.2.1.1.39.6|65|3866921 +1.3.6.1.4.1.9.2.2.1.1.39.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.39.11|65|6494691 +1.3.6.1.4.1.9.2.2.1.1.39.12|65|11462649 +1.3.6.1.4.1.9.2.2.1.1.40.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.5|65|1543400545 +1.3.6.1.4.1.9.2.2.1.1.40.6|65|2009521097 +1.3.6.1.4.1.9.2.2.1.1.40.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.40.11|65|506895840 +1.3.6.1.4.1.9.2.2.1.1.40.12|65|184193853 +1.3.6.1.4.1.9.2.2.1.1.41.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.5|65|564916805 +1.3.6.1.4.1.9.2.2.1.1.41.6|65|324081926 +1.3.6.1.4.1.9.2.2.1.1.41.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.41.11|65|415660224 +1.3.6.1.4.1.9.2.2.1.1.41.12|65|638662575 +1.3.6.1.4.1.9.2.2.1.1.42.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.42.11|65|3414937533 +1.3.6.1.4.1.9.2.2.1.1.42.12|65|1883297151 +1.3.6.1.4.1.9.2.2.1.1.43.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.5|65|1511868063 +1.3.6.1.4.1.9.2.2.1.1.43.6|65|146767496 +1.3.6.1.4.1.9.2.2.1.1.43.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.43.11|65|2781170769 +1.3.6.1.4.1.9.2.2.1.1.43.12|65|1658677000 +1.3.6.1.4.1.9.2.2.1.1.44.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.44.11|65|288958226 +1.3.6.1.4.1.9.2.2.1.1.44.12|65|3995459932 +1.3.6.1.4.1.9.2.2.1.1.45.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.5|65|534314225 +1.3.6.1.4.1.9.2.2.1.1.45.6|65|326141798 +1.3.6.1.4.1.9.2.2.1.1.45.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.45.11|65|3350088413 +1.3.6.1.4.1.9.2.2.1.1.45.12|65|1019222469 +1.3.6.1.4.1.9.2.2.1.1.46.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.46.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.47.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.48.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.49.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.50.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.51.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.52.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.53.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.54.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.55.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.56.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.57.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.58.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.59.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.60.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.61.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.62.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.63.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.64.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.65.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.66.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.67.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.68.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.69.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.70.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.71.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.72.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.73.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.74.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.75.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.76.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.77.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.78.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.79.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.80.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.81.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.82.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.83.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.84.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.85.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.86.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.87.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.88.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.89.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.90.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.91.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.92.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.93.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.94.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.95.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.96.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.97.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.98.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.99.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.100.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.101.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.102.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.103.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.104.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.105.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.106.11|65|8448277 +1.3.6.1.4.1.9.2.2.1.1.106.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.107.11|65|6494701 +1.3.6.1.4.1.9.2.2.1.1.107.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.108.11|65|506896740 +1.3.6.1.4.1.9.2.2.1.1.108.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.109.11|65|389682240 +1.3.6.1.4.1.9.2.2.1.1.109.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.110.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.111.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.112.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.113.12|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.1|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.2|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.3|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.4|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.5|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.6|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.7|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.8|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.9|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.10|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.11|65|0 +1.3.6.1.4.1.9.2.2.1.1.114.12|65|0 +1.3.6.1.4.1.9.2.4.1.1.1.10.183.52.100|4x|6e6f6e2d766f6c6174696c65206d656d6f7279 +1.3.6.1.4.1.9.2.4.1.1.2.10.183.52.100|64x|00000000 +1.3.6.1.4.1.9.2.4.1.1.3.10.183.52.100|64x|00000000 +1.3.6.1.4.1.9.2.4.1.1.4.10.183.52.100|2|0 +1.3.6.1.4.1.9.2.4.1.1.5.10.183.52.100|2|1 +1.3.6.1.4.1.9.2.4.1.1.6.10.183.52.100|2|1 +1.3.6.1.4.1.9.2.4.2.1.1.0.0.0.0|64x|00000000 +1.3.6.1.4.1.9.2.4.2.1.1.10.183.52.0|64x|ffffff00 +1.3.6.1.4.1.9.2.4.2.1.1.10.183.52.100|64x|ffffffff +1.3.6.1.4.1.9.2.4.2.1.2.0.0.0.0|2|1 +1.3.6.1.4.1.9.2.4.2.1.2.10.183.52.0|2|1 +1.3.6.1.4.1.9.2.4.2.1.2.10.183.52.100|2|1 +1.3.6.1.4.1.9.2.4.2.1.3.0.0.0.0|2|0 +1.3.6.1.4.1.9.2.4.2.1.3.10.183.52.0|2|0 +1.3.6.1.4.1.9.2.4.2.1.3.10.183.52.100|2|0 +1.3.6.1.4.1.9.2.4.4.0|2|512 +1.3.6.1.4.1.9.2.4.5.0|2|0 +1.3.6.1.4.1.9.2.4.6.0|2|0 +1.3.6.1.4.1.9.2.4.8.0|67|0 +1.3.6.1.4.1.9.2.4.10.0|67|0 +1.3.6.1.4.1.9.2.4.11.0|2|0 +1.3.6.1.4.1.9.2.4.12.0|65|0 +1.3.6.1.4.1.9.2.6.1.1.1.10.183.52.100.31572.10.183.37.115.64999|2|32 +1.3.6.1.4.1.9.2.6.1.1.1.10.183.52.100.64999.10.183.37.114.27589|2|32 +1.3.6.1.4.1.9.2.6.1.1.2.10.183.52.100.31572.10.183.37.115.64999|2|1135179 +1.3.6.1.4.1.9.2.6.1.1.2.10.183.52.100.64999.10.183.37.114.27589|2|1156283 +1.3.6.1.4.1.9.2.6.1.1.3.10.183.52.100.31572.10.183.37.115.64999|2|1 +1.3.6.1.4.1.9.2.6.1.1.3.10.183.52.100.64999.10.183.37.114.27589|2|1 +1.3.6.1.4.1.9.2.6.1.1.4.10.183.52.100.31572.10.183.37.115.64999|2|82116 +1.3.6.1.4.1.9.2.6.1.1.4.10.183.52.100.64999.10.183.37.114.27589|2|84268 +1.3.6.1.4.1.9.2.6.1.1.5.10.183.52.100.31572.10.183.37.115.64999|67|259312678 +1.3.6.1.4.1.9.2.6.1.1.5.10.183.52.100.64999.10.183.37.114.27589|67|267572556 +1.3.6.1.4.1.9.2.9.1.0|2|18 +1.3.6.1.4.1.9.2.9.2.1.1.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.1.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.2.0|2|2 +1.3.6.1.4.1.9.2.9.2.1.2.1|2|6 +1.3.6.1.4.1.9.2.9.2.1.2.2|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.3|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.4|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.5|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.6|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.7|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.8|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.9|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.10|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.11|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.12|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.13|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.14|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.15|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.16|2|5 +1.3.6.1.4.1.9.2.9.2.1.2.17|2|5 +1.3.6.1.4.1.9.2.9.2.1.3.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.3.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.4.0|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.1|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.2|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.3|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.4|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.5|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.6|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.7|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.8|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.9|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.10|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.11|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.12|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.13|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.14|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.15|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.16|2|9600 +1.3.6.1.4.1.9.2.9.2.1.4.17|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.0|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.1|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.2|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.3|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.4|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.5|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.6|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.7|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.8|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.9|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.10|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.11|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.12|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.13|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.14|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.15|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.16|2|9600 +1.3.6.1.4.1.9.2.9.2.1.5.17|2|9600 +1.3.6.1.4.1.9.2.9.2.1.6.0|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.1|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.2|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.3|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.4|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.5|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.6|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.7|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.8|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.9|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.10|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.11|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.12|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.13|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.14|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.15|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.16|2|2 +1.3.6.1.4.1.9.2.9.2.1.6.17|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.0|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.1|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.2|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.3|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.4|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.5|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.6|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.7|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.8|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.9|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.10|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.11|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.12|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.13|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.14|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.15|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.16|2|2 +1.3.6.1.4.1.9.2.9.2.1.7.17|2|2 +1.3.6.1.4.1.9.2.9.2.1.8.0|4| +1.3.6.1.4.1.9.2.9.2.1.8.1|4| +1.3.6.1.4.1.9.2.9.2.1.8.2|4| +1.3.6.1.4.1.9.2.9.2.1.8.3|4| +1.3.6.1.4.1.9.2.9.2.1.8.4|4| +1.3.6.1.4.1.9.2.9.2.1.8.5|4| +1.3.6.1.4.1.9.2.9.2.1.8.6|4| +1.3.6.1.4.1.9.2.9.2.1.8.7|4| +1.3.6.1.4.1.9.2.9.2.1.8.8|4| +1.3.6.1.4.1.9.2.9.2.1.8.9|4| +1.3.6.1.4.1.9.2.9.2.1.8.10|4| +1.3.6.1.4.1.9.2.9.2.1.8.11|4| +1.3.6.1.4.1.9.2.9.2.1.8.12|4| +1.3.6.1.4.1.9.2.9.2.1.8.13|4| +1.3.6.1.4.1.9.2.9.2.1.8.14|4| +1.3.6.1.4.1.9.2.9.2.1.8.15|4| +1.3.6.1.4.1.9.2.9.2.1.8.16|4| +1.3.6.1.4.1.9.2.9.2.1.8.17|4| +1.3.6.1.4.1.9.2.9.2.1.9.0|4| +1.3.6.1.4.1.9.2.9.2.1.9.1|4| +1.3.6.1.4.1.9.2.9.2.1.9.2|4| +1.3.6.1.4.1.9.2.9.2.1.9.3|4| +1.3.6.1.4.1.9.2.9.2.1.9.4|4| +1.3.6.1.4.1.9.2.9.2.1.9.5|4| +1.3.6.1.4.1.9.2.9.2.1.9.6|4| +1.3.6.1.4.1.9.2.9.2.1.9.7|4| +1.3.6.1.4.1.9.2.9.2.1.9.8|4| +1.3.6.1.4.1.9.2.9.2.1.9.9|4| +1.3.6.1.4.1.9.2.9.2.1.9.10|4| +1.3.6.1.4.1.9.2.9.2.1.9.11|4| +1.3.6.1.4.1.9.2.9.2.1.9.12|4| +1.3.6.1.4.1.9.2.9.2.1.9.13|4| +1.3.6.1.4.1.9.2.9.2.1.9.14|4| +1.3.6.1.4.1.9.2.9.2.1.9.15|4| +1.3.6.1.4.1.9.2.9.2.1.9.16|4| +1.3.6.1.4.1.9.2.9.2.1.9.17|4| +1.3.6.1.4.1.9.2.9.2.1.10.0|2|24 +1.3.6.1.4.1.9.2.9.2.1.10.1|2|24 +1.3.6.1.4.1.9.2.9.2.1.10.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.10.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.11.0|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.1|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.2|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.3|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.4|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.5|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.6|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.7|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.8|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.9|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.10|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.11|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.12|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.13|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.14|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.15|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.16|2|80 +1.3.6.1.4.1.9.2.9.2.1.11.17|2|80 +1.3.6.1.4.1.9.2.9.2.1.12.0|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.1|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.2|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.3|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.4|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.5|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.6|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.7|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.8|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.9|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.10|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.11|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.12|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.13|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.14|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.15|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.16|4x|1e +1.3.6.1.4.1.9.2.9.2.1.12.17|4x|1e +1.3.6.1.4.1.9.2.9.2.1.13.0|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.1|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.2|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.3|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.4|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.5|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.6|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.7|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.8|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.9|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.10|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.11|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.12|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.13|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.14|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.15|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.16|2|600 +1.3.6.1.4.1.9.2.9.2.1.13.17|2|600 +1.3.6.1.4.1.9.2.9.2.1.14.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.14.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.15.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.2|2|71 +1.3.6.1.4.1.9.2.9.2.1.16.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.16.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.17.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.18.0|4| +1.3.6.1.4.1.9.2.9.2.1.18.1|4| +1.3.6.1.4.1.9.2.9.2.1.18.2|4| +1.3.6.1.4.1.9.2.9.2.1.18.3|4| +1.3.6.1.4.1.9.2.9.2.1.18.4|4| +1.3.6.1.4.1.9.2.9.2.1.18.5|4| +1.3.6.1.4.1.9.2.9.2.1.18.6|4| +1.3.6.1.4.1.9.2.9.2.1.18.7|4| +1.3.6.1.4.1.9.2.9.2.1.18.8|4| +1.3.6.1.4.1.9.2.9.2.1.18.9|4| +1.3.6.1.4.1.9.2.9.2.1.18.10|4| +1.3.6.1.4.1.9.2.9.2.1.18.11|4| +1.3.6.1.4.1.9.2.9.2.1.18.12|4| +1.3.6.1.4.1.9.2.9.2.1.18.13|4| +1.3.6.1.4.1.9.2.9.2.1.18.14|4| +1.3.6.1.4.1.9.2.9.2.1.18.15|4| +1.3.6.1.4.1.9.2.9.2.1.18.16|4| +1.3.6.1.4.1.9.2.9.2.1.18.17|4| +1.3.6.1.4.1.9.2.9.2.1.19.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.19.17|2|0 +1.3.6.1.4.1.9.2.9.2.1.20.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.20.1|2|1 +1.3.6.1.4.1.9.2.9.2.1.20.2|2|2 +1.3.6.1.4.1.9.2.9.2.1.20.3|2|3 +1.3.6.1.4.1.9.2.9.2.1.20.4|2|4 +1.3.6.1.4.1.9.2.9.2.1.20.5|2|5 +1.3.6.1.4.1.9.2.9.2.1.20.6|2|6 +1.3.6.1.4.1.9.2.9.2.1.20.7|2|7 +1.3.6.1.4.1.9.2.9.2.1.20.8|2|8 +1.3.6.1.4.1.9.2.9.2.1.20.9|2|9 +1.3.6.1.4.1.9.2.9.2.1.20.10|2|10 +1.3.6.1.4.1.9.2.9.2.1.20.11|2|11 +1.3.6.1.4.1.9.2.9.2.1.20.12|2|12 +1.3.6.1.4.1.9.2.9.2.1.20.13|2|13 +1.3.6.1.4.1.9.2.9.2.1.20.14|2|14 +1.3.6.1.4.1.9.2.9.2.1.20.15|2|15 +1.3.6.1.4.1.9.2.9.2.1.20.16|2|16 +1.3.6.1.4.1.9.2.9.2.1.20.17|2|17 +1.3.6.1.4.1.9.2.9.2.1.21.0|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.1|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.2|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.3|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.4|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.5|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.6|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.7|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.8|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.9|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.10|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.11|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.12|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.13|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.14|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.15|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.16|2|0 +1.3.6.1.4.1.9.2.9.2.1.21.17|2|0 +1.3.6.1.4.1.9.2.9.4.0|2|-1 +1.3.6.1.4.1.9.2.9.5.0|2|0 +1.3.6.1.4.1.9.2.9.6.0|2|0 +1.3.6.1.4.1.9.2.9.7.0|4x|4e756c6c204d657373616765 +1.3.6.1.4.1.9.2.9.8.0|2|1 +1.3.6.1.4.1.9.2.9.9.0|2|3 +1.3.6.1.4.1.9.2.9.10.0|2|-1 +1.3.6.1.4.1.9.3.2.1.0|2|0 +1.3.6.1.4.1.9.3.2.2.0|2|0 +1.3.6.1.4.1.9.3.2.3.0|2|0 +1.3.6.1.4.1.9.3.2.4.0|2|0 +1.3.6.1.4.1.9.3.2.5.0|2|0 +1.3.6.1.4.1.9.3.2.6.0|2|0 +1.3.6.1.4.1.9.3.2.7.0|2|0 +1.3.6.1.4.1.9.3.2.8.0|2|0 +1.3.6.1.4.1.9.3.2.9.0|2|0 +1.3.6.1.4.1.9.3.2.10.0|2|0 +1.3.6.1.4.1.9.3.2.11.0|2|0 +1.3.6.1.4.1.9.3.2.12.0|2|0 +1.3.6.1.4.1.9.3.2.13.0|2|0 +1.3.6.1.4.1.9.3.2.14.0|2|0 +1.3.6.1.4.1.9.3.2.15.0|2|0 +1.3.6.1.4.1.9.3.2.16.0|2|0 +1.3.6.1.4.1.9.3.2.17.0|2|0 +1.3.6.1.4.1.9.3.2.18.0|2|0 +1.3.6.1.4.1.9.3.2.19.0|2|0 +1.3.6.1.4.1.9.3.2.20.0|2|0 +1.3.6.1.4.1.9.3.2.21.0|2|0 +1.3.6.1.4.1.9.3.4.1.0|2|0 +1.3.6.1.4.1.9.3.4.2.0|2|0 +1.3.6.1.4.1.9.3.4.3.0|2|0 +1.3.6.1.4.1.9.3.4.4.0|2|0 +1.3.6.1.4.1.9.3.4.5.0|2|0 +1.3.6.1.4.1.9.3.4.6.0|2|0 +1.3.6.1.4.1.9.3.4.7.0|2|0 +1.3.6.1.4.1.9.3.4.8.0|2|0 +1.3.6.1.4.1.9.3.4.9.0|2|0 +1.3.6.1.4.1.9.3.4.10.0|2|0 +1.3.6.1.4.1.9.3.4.11.0|2|0 +1.3.6.1.4.1.9.3.4.12.0|2|0 +1.3.6.1.4.1.9.3.4.13.0|2|0 +1.3.6.1.4.1.9.3.4.14.0|2|0 +1.3.6.1.4.1.9.3.4.15.0|2|0 +1.3.6.1.4.1.9.3.4.16.0|2|0 +1.3.6.1.4.1.9.3.4.17.0|2|0 +1.3.6.1.4.1.9.3.4.18.0|2|512 +1.3.6.1.4.1.9.3.4.19.0|2|0 +1.3.6.1.4.1.9.3.4.20.0|2|0 +1.3.6.1.4.1.9.3.4.22.0|67|0 +1.3.6.1.4.1.9.3.4.24.0|67|0 +1.3.6.1.4.1.9.3.4.25.0|2|0 +1.3.6.1.4.1.9.3.6.1.0|2|1 +1.3.6.1.4.1.9.3.6.2.0|4|KATAR +1.3.6.1.4.1.9.3.6.3.0|4| +1.3.6.1.4.1.9.3.6.4.0|4| +1.3.6.1.4.1.9.3.6.5.0|4| +1.3.6.1.4.1.9.3.6.6.0|2|1674152668 +1.3.6.1.4.1.9.3.6.7.0|2|33554432 +1.3.6.1.4.1.9.3.6.8.0|2|106945 +1.3.6.1.4.1.9.3.6.9.0|2|258 +1.3.6.1.4.1.9.3.6.10.0|2|258 +1.3.6.1.4.1.9.3.6.11.1.1.1|2|1 +1.3.6.1.4.1.9.3.6.11.1.1.2|2|2 +1.3.6.1.4.1.9.3.6.11.1.1.3|2|3 +1.3.6.1.4.1.9.3.6.11.1.2.1|2|11 +1.3.6.1.4.1.9.3.6.11.1.2.2|2|12 +1.3.6.1.4.1.9.3.6.11.1.2.3|2|10 +1.3.6.1.4.1.9.3.6.11.1.3.1|4x|43393830302d4c2d462d4b39 +1.3.6.1.4.1.9.3.6.11.1.3.2|4x|43393830302d4c2d462d4b39 +1.3.6.1.4.1.9.3.6.11.1.3.3|4x|43393830302d4c2d462d4b39 +1.3.6.1.4.1.9.3.6.11.1.4.1|2|0 +1.3.6.1.4.1.9.3.6.11.1.4.2|2|0 +1.3.6.1.4.1.9.3.6.11.1.4.3|2|0 +1.3.6.1.4.1.9.3.6.11.1.5.1|4x|31362e313228337229 +1.3.6.1.4.1.9.3.6.11.1.5.2|4x|31362e313228337229 +1.3.6.1.4.1.9.3.6.11.1.5.3|4x|31362e313228337229 +1.3.6.1.4.1.9.3.6.11.1.6.1|4x|31372e30392e3034 +1.3.6.1.4.1.9.3.6.11.1.6.2|4| +1.3.6.1.4.1.9.3.6.11.1.6.3|4x|31372e30392e3034 +1.3.6.1.4.1.9.3.6.11.1.7.1|2|2 +1.3.6.1.4.1.9.3.6.11.1.7.2|2|0 +1.3.6.1.4.1.9.3.6.11.1.7.3|2|1 +1.3.6.1.4.1.9.3.6.11.1.8.1|2|0 +1.3.6.1.4.1.9.3.6.11.1.8.2|2|0 +1.3.6.1.4.1.9.3.6.11.1.8.3|2|0 +1.3.6.1.4.1.9.3.6.11.1.9.1|2|0 +1.3.6.1.4.1.9.3.6.11.1.9.2|2|0 +1.3.6.1.4.1.9.3.6.11.1.9.3|2|0 +1.3.6.1.4.1.9.3.6.11.1.10.1|2|0 +1.3.6.1.4.1.9.3.6.11.1.10.2|2|0 +1.3.6.1.4.1.9.3.6.11.1.10.3|2|0 +1.3.6.1.4.1.9.3.6.12.0|2|0 +1.3.6.1.4.1.9.3.6.14.0|2|1 +1.3.6.1.4.1.9.3.6.15.0|67|2458 +1.3.6.1.4.1.9.9.6.1.1.1.1.10.183.52.100.31572.10.183.37.115.64999|65|32 +1.3.6.1.4.1.9.9.6.1.1.1.1.10.183.52.100.64999.10.183.37.114.27589|65|32 +1.3.6.1.4.1.9.9.6.1.1.1.2.10.183.52.100.31572.10.183.37.115.64999|65|1135179 +1.3.6.1.4.1.9.9.6.1.1.1.2.10.183.52.100.64999.10.183.37.114.27589|65|1156283 +1.3.6.1.4.1.9.9.6.1.1.1.3.10.183.52.100.31572.10.183.37.115.64999|65|1 +1.3.6.1.4.1.9.9.6.1.1.1.3.10.183.52.100.64999.10.183.37.114.27589|65|1 +1.3.6.1.4.1.9.9.6.1.1.1.4.10.183.52.100.31572.10.183.37.115.64999|65|82116 +1.3.6.1.4.1.9.9.6.1.1.1.4.10.183.52.100.64999.10.183.37.114.27589|65|84268 +1.3.6.1.4.1.9.9.6.1.1.1.5.10.183.52.100.31572.10.183.37.115.64999|67|259313019 +1.3.6.1.4.1.9.9.6.1.1.1.5.10.183.52.100.64999.10.183.37.114.27589|67|267572898 +1.3.6.1.4.1.9.9.6.1.1.1.6.10.183.52.100.31572.10.183.37.115.64999|2|1000 +1.3.6.1.4.1.9.9.6.1.1.1.6.10.183.52.100.64999.10.183.37.114.27589|2|1000 +1.3.6.1.4.1.9.9.6.1.1.1.7.10.183.52.100.31572.10.183.37.115.64999|65|130 +1.3.6.1.4.1.9.9.6.1.1.1.7.10.183.52.100.64999.10.183.37.114.27589|65|121 +1.3.6.1.4.1.9.9.6.1.1.1.8.10.183.52.100.31572.10.183.37.115.64999|65|0 +1.3.6.1.4.1.9.9.6.1.1.1.8.10.183.52.100.64999.10.183.37.114.27589|65|0 +1.3.6.1.4.1.9.9.6.1.1.1.9.10.183.52.100.31572.10.183.37.115.64999|2|1003 +1.3.6.1.4.1.9.9.6.1.1.1.9.10.183.52.100.64999.10.183.37.114.27589|2|1003 +1.3.6.1.4.1.9.9.10.1.1.1.0|66|1 +1.3.6.1.4.1.9.9.10.1.1.2.1.2.1|66|4294967295 +1.3.6.1.4.1.9.9.10.1.1.2.1.3.1|66|4294967295 +1.3.6.1.4.1.9.9.10.1.1.2.1.4.1|66|1 +1.3.6.1.4.1.9.9.10.1.1.2.1.5.1|66|1 +1.3.6.1.4.1.9.9.10.1.1.2.1.6.1|2|1 +1.3.6.1.4.1.9.9.10.1.1.2.1.7.1|4|bootflash +1.3.6.1.4.1.9.9.10.1.1.2.1.8.1|4x|426f6f7420466c617368 +1.3.6.1.4.1.9.9.10.1.1.2.1.9.1|4| +1.3.6.1.4.1.9.9.10.1.1.2.1.11.1|2|3 +1.3.6.1.4.1.9.9.10.1.1.2.1.12.1|67|0 +1.3.6.1.4.1.9.9.10.1.1.2.1.13.1|2|2 +1.3.6.1.4.1.9.9.10.1.1.2.1.14.1|2|0 +1.3.6.1.4.1.9.9.10.1.1.2.1.15.1|4|bootflash +1.3.6.1.4.1.9.9.10.1.1.2.1.16.1|70|26458804224 +1.3.6.1.4.1.9.9.10.1.1.2.1.17.1|70|26458804224 +1.3.6.1.4.1.9.9.10.1.1.3.1.1.2.1.1|4x|30303a3030 +1.3.6.1.4.1.9.9.10.1.1.3.1.1.3.1.1|4| +1.3.6.1.4.1.9.9.10.1.1.3.1.1.4.1.1|65|0 +1.3.6.1.4.1.9.9.10.1.1.3.1.1.5.1.1|65|0 +1.3.6.1.4.1.9.9.10.1.1.3.1.1.6.1.1|66|0 +1.3.6.1.4.1.9.9.10.1.1.3.1.1.7.1.1|66|0 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.2.1.1|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.3.1.1|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.4.1.1|66|4294967295 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.5.1.1|66|4294967295 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.6.1.1|66|2030 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.7.1.1|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.8.1.1|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.9.1.1|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.10.1.1|4|bootflash +1.3.6.1.4.1.9.9.10.1.1.4.1.1.11.1.1|2|2 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.12.1.1|2|63 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.13.1.1|70|26458804224 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.14.1.1|70|17010094080 +1.3.6.1.4.1.9.9.10.1.1.4.1.1.15.1.1|2|5 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.2|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.11|66|16384 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.12|66|1349575718 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.13|66|1636 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.14|66|5242880 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.15|66|5291 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.16|66|137940 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.17|66|30 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.18|66|495376 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.19|66|0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.20|66|5580 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.21|66|103936833 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130817|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130818|66|1476 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130819|66|1527 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130820|66|1462 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130821|66|1355 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130822|66|1526 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130823|66|1679 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130824|66|1730 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130825|66|6500 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130826|66|32117 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130827|66|80694 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130828|66|4745 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130829|66|17585 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130830|66|99924 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130831|66|19158 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130832|66|4984 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130833|66|99878 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130834|66|99954 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130835|66|98235 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130836|66|24442 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130837|66|12668 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130838|66|99913 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130839|66|99995 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130840|66|99794 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130841|66|7881 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130842|66|12731 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130843|66|12731 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130844|66|16051 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130845|66|13547 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130846|66|13508 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130847|66|12731 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130848|66|99955 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130849|66|19834 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130850|66|99826 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.130851|66|60791 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.237105|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.245281|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.253457|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.261633|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.269809|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.277985|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.286161|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.294338|66|5598 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.294339|66|1312220184 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.294340|66|37629910 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621377|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621378|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621379|66|15861 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621380|66|173 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621381|66|147093 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.621382|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.629553|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.654081|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.654082|66|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.662257|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.686785|66|4096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703137|66|2048287 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703138|66|2053201 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703139|66|2054667 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703140|66|2063778 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703141|66|1952262 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703142|66|1937945 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703143|66|1954759 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703144|66|1990899 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703145|66|2000328 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703146|66|1920977 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703147|66|1958982 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703148|66|2195382 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703149|66|1944993 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703150|66|1991259 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703151|66|1977772 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703152|66|1949103 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703153|66|1935472 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703154|66|1961128 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703155|66|2048299 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703156|66|1966375 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703157|66|1893826 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703158|66|1940584 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703159|66|1951537 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703160|66|2312666 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703161|66|1963297 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703162|66|2041353 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703163|66|2085732 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703164|66|2105749 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703165|66|2117637 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703166|66|2127039 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703167|66|2168139 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703168|66|2159389 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703169|66|2160219 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703170|66|2122312 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703171|66|2137374 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703172|66|2175898 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703173|66|2171545 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703174|66|2188558 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703175|66|2213643 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703176|66|2182081 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703177|66|2183479 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703178|66|2185106 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703179|66|2180354 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703180|66|2153755 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703181|66|2190865 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703182|66|2161198 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703183|66|2160042 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703184|66|2176081 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703185|66|2178937 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703186|66|2217642 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703187|66|2198277 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703188|66|2158546 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703189|66|2203891 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703190|66|2125873 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703191|66|2162163 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703192|66|2144201 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703193|66|2190908 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703194|66|2152010 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703195|66|2158018 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703196|66|2138983 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703197|66|2152788 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703198|66|2144410 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703199|66|2132648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703200|66|2131642 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703201|66|2105798 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703202|66|2113641 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703203|66|2185731 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703204|66|2192836 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703205|66|2139869 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703206|66|2110601 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703207|66|2207082 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703208|66|2145076 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703209|66|2162363 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703210|66|2135652 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703211|66|2114480 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703212|66|2113042 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703213|66|2101398 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703214|66|2082482 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703215|66|2163504 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703216|66|2144408 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703217|66|2162865 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703218|66|2203178 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703219|66|2196675 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703220|66|2180936 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703221|66|2177849 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703222|66|2154276 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703223|66|2160224 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703224|66|2133971 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703225|66|2127884 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703226|66|2134725 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703227|66|2164462 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703228|66|2199064 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703229|66|2150864 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703230|66|2171123 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703231|66|2132343 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703232|66|1504 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703233|66|2117833 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703234|66|2157909 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703235|66|2130529 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703236|66|2167116 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703237|66|2123504 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703238|66|2160875 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703239|66|2172296 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703240|66|2139284 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703241|66|2148978 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703242|66|2133848 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703243|66|2150507 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703244|66|2166328 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703245|66|2086799 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703246|66|2104196 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703247|66|2197642 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703248|66|2165212 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703249|66|2182142 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703250|66|2168732 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703251|66|2134346 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703252|66|2149101 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703253|66|2157992 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703254|66|2131625 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703255|66|2135014 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703256|66|2136238 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703257|66|2156450 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703258|66|2075472 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703259|66|2072895 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703260|66|2115488 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703261|66|1507 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703262|66|2185412 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703263|66|2105501 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703264|66|2090655 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703265|66|2069134 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703266|66|2067649 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703267|66|2052377 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703268|66|2084241 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703269|66|2097395 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703270|66|2133146 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703271|66|2096822 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703272|66|2170113 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703273|66|2162798 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703274|66|2171995 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703275|66|2173030 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703276|66|2190274 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703277|66|2146474 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703278|66|2181039 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703279|66|2166573 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703280|66|2156938 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703281|66|2213851 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703282|66|2246863 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703283|66|2211859 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703284|66|2218106 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703285|66|2210626 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703286|66|1504 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703287|66|2198384 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703288|66|2175267 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703289|66|2199881 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703290|66|2180877 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703291|66|2197252 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703292|66|2021557 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703293|66|1507 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703294|66|2173127 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703295|66|2190420 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703296|66|2185657 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703297|66|2181488 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703298|66|2174263 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703299|66|2173689 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703300|66|2174086 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703301|66|2135255 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703302|66|2165310 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703303|66|2187910 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703304|66|2160414 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703305|66|2171221 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703306|66|2152911 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703307|66|2160695 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703308|66|2105111 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703309|66|2129027 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703310|66|2156207 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703311|66|2177875 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703312|66|2097658 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703313|66|2089120 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703314|66|2115706 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703315|66|2151801 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703316|66|2167917 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703317|66|2094810 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703318|66|2132695 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703319|66|2097401 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703320|66|2073294 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703321|66|2074305 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703322|66|2070685 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703323|66|2058244 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703324|66|2064115 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703325|66|2115548 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703326|66|2136090 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703327|66|2208243 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703328|66|2181805 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703329|66|2171544 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703330|66|2127874 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703331|66|2166749 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703332|66|2163578 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703333|66|2156065 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703334|66|2175047 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703335|66|2156057 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703336|66|2175890 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703337|66|2189313 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703338|66|2142760 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703339|66|2142563 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703340|66|2166525 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703341|66|2154163 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703342|66|2181200 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703343|66|2196215 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703344|66|2206404 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703345|66|2218862 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703346|66|2219564 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703347|66|2235057 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703348|66|2217665 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703349|66|2193706 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703350|66|2128001 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703351|66|2111754 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703352|66|2120204 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703353|66|2159555 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703354|66|2149851 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703355|66|2161107 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703356|66|2171412 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703357|66|2143847 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703358|66|2151098 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703359|66|2144248 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703360|66|2112074 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703361|66|2172633 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703362|66|2134986 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703363|66|2125965 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703364|66|2115156 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703365|66|2137648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703366|66|2099001 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703367|66|2104119 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703368|66|2103269 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703369|66|2114878 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703370|66|2026677 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703371|66|2060705 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703372|66|2057532 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703373|66|2102875 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703374|66|2101184 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703375|66|2133309 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703376|66|2198495 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703377|66|2202914 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703378|66|2229729 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703379|66|2194374 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703380|66|2173660 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703381|66|2152461 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703382|66|2151090 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703383|66|2123345 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703384|66|2166790 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703385|66|2183943 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703386|66|2170081 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703387|66|2204749 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703388|66|2166648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703389|66|2129910 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703390|66|2159925 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703391|66|2156599 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703392|66|2160448 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703393|66|2190184 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703394|66|2178876 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703395|66|2191330 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703396|66|2149403 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703397|66|2170389 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703398|66|2176122 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703399|66|2144215 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703400|66|2165795 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703401|66|2116829 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703402|66|2160659 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703403|66|2109132 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703404|66|2094408 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703405|66|2101882 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703406|66|2198665 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703407|66|2133720 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703408|66|2162824 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703409|66|2130035 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703410|66|2187884 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703411|66|2135978 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703412|66|2092086 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703413|66|2082165 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703414|66|2085154 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703415|66|2079336 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703416|66|2081894 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703417|66|2103730 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703418|66|2107883 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703419|66|2090134 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703420|66|2079442 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703421|66|2085215 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703422|66|2055454 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703423|66|2072143 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703424|66|2080590 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703425|66|2084900 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703426|66|2137088 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703427|66|2076984 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703428|66|2089383 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703429|66|2136548 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703430|66|2136531 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703431|66|2142164 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703432|66|2158913 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703433|66|2102859 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703434|66|2127103 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703435|66|2143593 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703436|66|2152211 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703437|66|2173254 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703438|66|2164306 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703439|66|2181977 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703440|66|2132071 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703441|66|2072494 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703442|66|2108382 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703443|66|2107852 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703444|66|2110585 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703445|66|2088166 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703446|66|2132036 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703447|66|2135141 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703448|66|2109228 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703449|66|2102534 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703450|66|2125596 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703451|66|2080852 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703452|66|2154033 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703453|66|2112777 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703454|66|2139447 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703455|66|2132499 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703456|66|2128279 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703457|66|2144785 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703458|66|2141954 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703459|66|2127532 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703460|66|2122753 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703461|66|2132476 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703462|66|2151641 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703463|66|2143826 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703464|66|2120671 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703465|66|2112788 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703466|66|2095277 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703467|66|2125556 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703468|66|2084403 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703469|66|2086924 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703470|66|2066626 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703471|66|2060004 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703472|66|2078673 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703473|66|2057147 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703474|66|2083286 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703475|66|2087196 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703476|66|2093358 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703477|66|2087674 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703478|66|2092381 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703479|66|2105154 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703480|66|2106594 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703481|66|2111501 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703482|66|2097945 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703483|66|2105855 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703484|66|2096586 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703485|66|2077552 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703486|66|2068464 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703487|66|2124668 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703488|66|2103221 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703489|66|2102413 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703490|66|2099438 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703491|66|2126502 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703492|66|2195096 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703493|66|2181649 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703494|66|2181857 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703495|66|2094407 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703496|66|2078912 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703497|66|2054901 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703498|66|2023089 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703499|66|2046466 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703500|66|2265490 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703501|66|2035135 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703502|66|2044223 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703503|66|2076309 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703504|66|2068035 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703505|66|2027800 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703506|66|2037634 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703507|66|2007281 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703508|66|1990446 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703509|66|2000562 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703510|66|1997765 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703511|66|1997675 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703512|66|1997289 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703513|66|2024167 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703514|66|2080594 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703515|66|2076911 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703516|66|2106250 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703517|66|2213336 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703518|66|2209956 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703519|66|2180734 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703520|66|2166574 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703521|66|2126237 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703522|66|2119544 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703523|66|2102555 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703524|66|2167341 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703525|66|2191207 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703526|66|2161467 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703527|66|2150540 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703528|66|2150098 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703529|66|2158860 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703530|66|2160215 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703531|66|2147250 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703532|66|2141215 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703533|66|2152011 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703534|66|2155877 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703535|66|2166435 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703536|66|2174817 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703537|66|2150779 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703538|66|2156003 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703539|66|2157063 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703540|66|2167239 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703541|66|2188955 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703542|66|2151065 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703543|66|2104073 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703544|66|2164327 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703545|66|2148684 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703546|66|2177709 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703547|66|2148776 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703548|66|2192089 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703549|66|2189304 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703550|66|2160328 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703551|66|2176203 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703552|66|2131630 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703553|66|2133594 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703554|66|2164762 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703555|66|2136593 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703556|66|2128597 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703557|66|2090087 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703558|66|2126356 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703559|66|2097446 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703560|66|2095792 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703561|66|2113844 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703562|66|2100621 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703563|66|2133616 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703564|66|2103063 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703565|66|2144440 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703566|66|2111334 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703567|66|2135390 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703568|66|2153288 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703569|66|2146038 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703570|66|2169673 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703571|66|2210790 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703572|66|2171576 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703573|66|2163486 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703574|66|2156572 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703575|66|2164108 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703576|66|2143388 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703577|66|2173986 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703578|66|2185683 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703579|66|2175019 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703580|66|2190211 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703581|66|2165013 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703582|66|2180004 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703583|66|2167941 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703584|66|2178744 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703585|66|2166179 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703586|66|2190546 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703587|66|2184693 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703588|66|2185741 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703589|66|2146977 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703590|66|2152699 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703591|66|2193131 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703592|66|2161130 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703593|66|2169028 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703594|66|2202014 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703595|66|2139313 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703596|66|2113473 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703597|66|2159575 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703598|66|2156280 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703599|66|2163060 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703600|66|2180345 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703601|66|2176800 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703602|66|2151182 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703603|66|2185426 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703604|66|2150769 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703605|66|2176108 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703606|66|2155131 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703607|66|2143952 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703608|66|2155630 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703609|66|2142877 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703610|66|2121634 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703611|66|2155295 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703612|66|2140869 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703613|66|2102289 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703614|66|2082251 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703615|66|2156012 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703616|66|2088642 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703617|66|2172142 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703618|66|2150608 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703619|66|2159995 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703620|66|2157052 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703621|66|2120141 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703622|66|2175930 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703623|66|2190260 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703624|66|2220229 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703625|66|2166264 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703626|66|2183016 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703627|66|2170570 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703628|66|2166672 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703629|66|2187686 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703630|66|2156954 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703631|66|2158671 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703632|66|2178394 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703633|66|2210745 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703634|66|2227304 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703635|66|2166839 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703636|66|2163110 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703637|66|2176587 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703638|66|2183080 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703639|66|2199609 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703640|66|2187851 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703641|66|2171660 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703642|66|2135328 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703643|66|2157261 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703644|66|2136545 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703645|66|2143343 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703646|66|2157850 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703647|66|2155425 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703648|66|2167548 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703649|66|2132785 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703650|66|2070292 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703651|66|2127497 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703652|66|2150201 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703653|66|2161561 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703654|66|2151346 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703655|66|2179684 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703656|66|2123740 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703657|66|2116759 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703658|66|2086229 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703659|66|2114889 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703660|66|2165179 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703661|66|2101023 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703662|66|2073212 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703663|66|2102269 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703664|66|2050179 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703665|66|2089221 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703666|66|2101413 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703667|66|2094747 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703668|66|2098460 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703669|66|2084049 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703670|66|2097560 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703671|66|2104573 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703672|66|2132240 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703673|66|2112943 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703674|66|2125832 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703675|66|2138648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703676|66|2147741 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703677|66|2181973 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703678|66|2190460 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703679|66|2191746 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703680|66|2266854 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703681|66|2162602 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703682|66|2170234 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703683|66|2147628 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703684|66|2165864 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703685|66|2158971 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703686|66|2143063 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703687|66|2165047 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703688|66|2133094 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703689|66|2138956 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703690|66|2142775 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703691|66|2154158 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703692|66|2170712 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703693|66|2155563 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703694|66|2159466 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703695|66|2132111 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703696|66|2155964 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703697|66|2160305 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703698|66|2143583 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703699|66|2197964 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703700|66|2194732 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703701|66|2143225 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703702|66|2099832 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703703|66|2098261 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703704|66|2120484 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703705|66|2173731 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703706|66|2117756 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703707|66|2096458 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703708|66|2123465 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703709|66|2128620 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703710|66|2139270 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703711|66|2181681 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703712|66|2151647 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703713|66|2210426 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703714|66|2206230 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703715|66|2149374 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703716|66|2178596 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703717|66|2168554 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703718|66|2236875 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703719|66|2314646 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703720|66|2165990 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703721|66|2195544 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703722|66|2188809 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703723|66|2249987 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703724|66|2244991 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703725|66|2230534 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703726|66|2245732 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703727|66|2191675 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703728|66|2181606 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703729|66|2179212 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703730|66|2190039 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703731|66|2209277 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703732|66|2217137 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703733|66|2220627 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703734|66|2213077 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703735|66|2185500 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703736|66|2197344 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703737|66|2173403 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703738|66|2209524 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703739|66|2126626 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703740|66|2126744 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703741|66|2161367 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703742|66|2196438 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703743|66|2177074 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703744|66|2150448 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703745|66|2104572 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703746|66|2107802 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703747|66|2121952 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703748|66|2121727 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703749|66|2153329 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703750|66|2155350 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703751|66|2103485 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703752|66|2076102 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703753|66|2103820 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703754|66|2106510 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703755|66|2110197 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703756|66|2123505 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703757|66|2103847 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703758|66|2089734 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703759|66|2096787 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703760|66|2088209 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703761|66|2102461 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703762|66|2148991 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703763|66|2159301 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703764|66|2162480 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703765|66|2122522 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703766|66|2198396 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703767|66|2200575 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703768|66|2153285 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703769|66|2207879 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703770|66|2180812 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703771|66|2149900 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703772|66|2145117 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703773|66|2224378 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703774|66|2195308 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703775|66|2230301 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703776|66|2203531 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703777|66|2165022 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703778|66|2155423 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703779|66|2158067 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703780|66|2168962 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703781|66|2162361 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703782|66|2145876 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703783|66|2186648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703784|66|2158637 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703785|66|2207889 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703786|66|2231667 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703787|66|2194602 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703788|66|2177051 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703789|66|2161799 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703790|66|2155961 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703791|66|2195020 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703792|66|2111791 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703793|66|2122225 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703794|66|2137971 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703795|66|2164248 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703796|66|2144753 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703797|66|2108037 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703798|66|2141613 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703799|66|2133000 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703800|66|2128090 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703801|66|2126806 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703802|66|2108552 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703803|66|2125490 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703804|66|2055401 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703805|66|2091812 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703806|66|2059877 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703807|66|2098986 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703808|66|2091956 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703809|66|2062418 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703810|66|2078206 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703811|66|2105304 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703812|66|2086261 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703813|66|2075857 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703814|66|2119430 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703815|66|2067049 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703816|66|2133267 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703817|66|2137725 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703818|66|2197690 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703819|66|2192332 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703820|66|2148082 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703821|66|2209588 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703822|66|2204012 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703823|66|2168745 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703824|66|2181485 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703825|66|2158546 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703826|66|2175089 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703827|66|2196618 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703828|66|2211918 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703829|66|2217658 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703830|66|2169353 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703831|66|2179639 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703832|66|2152415 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703833|66|2181515 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703834|66|2180818 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703835|66|2173352 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703836|66|2216840 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703837|66|2204934 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703838|66|2200030 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703839|66|2185370 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703840|66|2212037 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703841|66|2187262 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703842|66|2172781 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703843|66|2181803 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703844|66|2202469 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703845|66|2117705 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703846|66|2114271 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703847|66|2146694 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703848|66|2136425 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703849|66|2125401 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703850|66|2125251 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703851|66|2105994 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703852|66|2082382 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703853|66|2135230 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703854|66|2158738 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703855|66|2132789 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703856|66|2106385 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703857|66|2089395 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703858|66|2047201 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703859|66|2075929 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703860|66|2120546 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703861|66|2129247 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703862|66|2094885 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703863|66|2076528 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703864|66|2069994 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703865|66|2045697 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703866|66|2085945 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703867|66|2144207 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703868|66|2071691 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703869|66|2120567 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703870|66|2147249 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703871|66|2182750 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703872|66|2164737 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703873|66|2218305 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703874|66|2203826 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703875|66|2172304 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703876|66|2200039 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703877|66|2169785 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703878|66|2164709 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703879|66|2159250 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703880|66|2194507 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703881|66|2204701 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703882|66|2180188 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703883|66|2197373 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703884|66|2190667 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703885|66|2201885 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703886|66|2240870 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703887|66|2205034 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703888|66|2189610 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703889|66|2208224 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703890|66|2163853 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703891|66|2167142 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703892|66|2174848 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703893|66|2202313 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703894|66|2195796 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703895|66|2190855 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703896|66|2205183 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703897|66|2195338 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703898|66|2192138 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703899|66|2206235 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703900|66|2196262 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703901|66|2193569 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703902|66|2194453 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703903|66|2187576 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703904|66|2195153 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703905|66|2135541 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703906|66|2135628 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703907|66|2199052 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703908|66|2166166 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703909|66|2180541 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703910|66|2162710 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703911|66|2150767 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703912|66|2110183 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703913|66|2127974 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703914|66|2159200 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703915|66|2150831 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703916|66|2147667 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703917|66|2135425 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703918|66|2151960 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703919|66|2136526 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703920|66|2090973 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703921|66|2103517 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703922|66|2105280 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703923|66|2114048 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703924|66|2095380 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703925|66|2120834 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703926|66|2092366 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703927|66|2138535 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703928|66|2070684 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703929|66|2128586 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703930|66|2130663 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703931|66|2165977 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703932|66|2156385 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703933|66|2130565 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703934|66|2172826 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703935|66|2189292 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703936|66|2142861 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703937|66|2144353 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703938|66|2147894 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703939|66|2144916 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703940|66|2155358 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703941|66|2192907 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703942|66|2160675 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703943|66|2121626 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703944|66|2141036 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703945|66|2156859 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703946|66|2153886 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703947|66|2132270 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703948|66|2147706 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703949|66|2145255 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703950|66|2147599 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703951|66|2145658 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703952|66|2147220 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703953|66|2124137 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703954|66|2146086 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703955|66|2150389 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703956|66|2135591 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703957|66|2114667 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703958|66|2101915 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703959|66|2118008 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703960|66|2182431 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703961|66|2157672 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703962|66|2064699 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703963|66|2099649 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703964|66|2092641 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703965|66|2110355 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703966|66|2163737 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703967|66|2155616 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703968|66|2101119 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703969|66|2057021 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703970|66|2093186 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703971|66|2109931 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703972|66|2071506 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703973|66|2086232 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703974|66|2077972 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703975|66|2081351 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703976|66|2040204 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703977|66|2065465 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703978|66|2081614 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703979|66|2110841 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703980|66|2136697 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703981|66|2095086 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703982|66|2145029 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703983|66|2159720 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703984|66|2136493 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703985|66|2182765 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703986|66|2162890 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703987|66|2204705 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703988|66|2180935 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703989|66|2184595 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703990|66|2121346 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703991|66|2161558 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703992|66|2134374 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703993|66|2151520 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703994|66|2153930 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703995|66|2146175 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703996|66|2164744 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703997|66|2145098 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703998|66|2130222 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.703999|66|2140655 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704000|66|2119444 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704001|66|2154610 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704002|66|2134491 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704003|66|2159312 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704004|66|2164931 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704005|66|2157940 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704006|66|2145298 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704007|66|2164356 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704008|66|2114263 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704009|66|2113926 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704010|66|2131230 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704011|66|2124558 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704012|66|2182252 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704013|66|2110362 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704014|66|2098928 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704015|66|2071617 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704016|66|2100887 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704017|66|2107689 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704018|66|2142764 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704019|66|2122213 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704020|66|2141642 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704021|66|2100700 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704022|66|2118203 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704023|66|2081402 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704024|66|2109453 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704025|66|2105404 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704026|66|2114597 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704027|66|2108773 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704028|66|2084469 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704029|66|2081888 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704030|66|2075199 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704031|66|2092890 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704032|66|2081383 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704033|66|2123504 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704034|66|2141239 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704035|66|2158804 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704036|66|2119312 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704037|66|2159811 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704038|66|2172073 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704039|66|2160454 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704040|66|2171207 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704041|66|2148305 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704042|66|2153918 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704043|66|2180718 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704044|66|2234862 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704045|66|2235544 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704046|66|2172318 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704047|66|2166784 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704048|66|2165407 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704049|66|2178987 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704050|66|2187379 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704051|66|2192448 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704052|66|2161395 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704053|66|2168647 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704054|66|2125777 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704055|66|2159187 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704056|66|2147030 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704057|66|2157753 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704058|66|2142283 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704059|66|2180092 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704060|66|2146154 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704061|66|2112648 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704062|66|2145999 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704063|66|2161526 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704064|66|2171102 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704065|66|2200001 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704066|66|2177019 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704067|66|2177476 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.2.1.1.704068|66|2148417 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.2|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.11|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.12|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.13|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.14|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.15|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.16|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.17|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.18|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.19|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.20|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.21|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130817|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130818|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130819|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130820|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130821|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130822|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130823|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130824|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130825|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130826|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130827|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130828|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130829|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130830|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130831|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130832|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130833|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130834|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130835|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130836|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130837|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130838|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130839|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130840|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130841|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130842|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130843|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130844|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130845|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130846|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130847|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130848|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130849|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130850|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.130851|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.237105|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.245281|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.253457|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.261633|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.269809|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.277985|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.286161|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.294338|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.294339|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.294340|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621377|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621378|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621379|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621380|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621381|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.621382|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.629553|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.654081|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.654082|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.662257|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.686785|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703137|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703138|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703139|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703140|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703141|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703142|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703143|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703144|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703145|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703146|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703147|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703148|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703149|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703150|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703151|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703152|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703153|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703154|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703155|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703156|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703157|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703158|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703159|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703160|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703161|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703162|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703163|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703164|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703165|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703166|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703167|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703168|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703169|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703170|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703171|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703172|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703173|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703174|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703175|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703176|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703177|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703178|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703179|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703180|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703181|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703182|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703183|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703184|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703185|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703186|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703187|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703188|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703189|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703190|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703191|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703192|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703193|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703194|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703195|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703196|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703197|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703198|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703199|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703200|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703201|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703202|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703203|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703204|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703205|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703206|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703207|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703208|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703209|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703210|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703211|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703212|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703213|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703214|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703215|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703216|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703217|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703218|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703219|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703220|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703221|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703222|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703223|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703224|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703225|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703226|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703227|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703228|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703229|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703230|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703231|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703232|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703233|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703234|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703235|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703236|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703237|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703238|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703239|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703240|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703241|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703242|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703243|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703244|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703245|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703246|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703247|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703248|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703249|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703250|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703251|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703252|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703253|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703254|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703255|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703256|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703257|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703258|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703259|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703260|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703261|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703262|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703263|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703264|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703265|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703266|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703267|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703268|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703269|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703270|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703271|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703272|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703273|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703274|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703275|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703276|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703277|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703278|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703279|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703280|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703281|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703282|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703283|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703284|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703285|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703286|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703287|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703288|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703289|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703290|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703291|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703292|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703293|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703294|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703295|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703296|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703297|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703298|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703299|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703300|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703301|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703302|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703303|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703304|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703305|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703306|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703307|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703308|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703309|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703310|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703311|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703312|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703313|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703314|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703315|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703316|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703317|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703318|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703319|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703320|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703321|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703322|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703323|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703324|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703325|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703326|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703327|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703328|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703329|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703330|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703331|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703332|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703333|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703334|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703335|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703336|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703337|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703338|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703339|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703340|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703341|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703342|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703343|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703344|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703345|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703346|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703347|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703348|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703349|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703350|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703351|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703352|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703353|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703354|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703355|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703356|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703357|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703358|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703359|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703360|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703361|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703362|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703363|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703364|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703365|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703366|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703367|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703368|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703369|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703370|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703371|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703372|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703373|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703374|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703375|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703376|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703377|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703378|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703379|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703380|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703381|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703382|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703383|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703384|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703385|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703386|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703387|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703388|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703389|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703390|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703391|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703392|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703393|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703394|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703395|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703396|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703397|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703398|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703399|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703400|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703401|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703402|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703403|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703404|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703405|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703406|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703407|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703408|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703409|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703410|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703411|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703412|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703413|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703414|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703415|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703416|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703417|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703418|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703419|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703420|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703421|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703422|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703423|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703424|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703425|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703426|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703427|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703428|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703429|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703430|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703431|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703432|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703433|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703434|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703435|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703436|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703437|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703438|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703439|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703440|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703441|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703442|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703443|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703444|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703445|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703446|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703447|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703448|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703449|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703450|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703451|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703452|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703453|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703454|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703455|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703456|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703457|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703458|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703459|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703460|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703461|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703462|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703463|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703464|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703465|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703466|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703467|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703468|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703469|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703470|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703471|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703472|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703473|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703474|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703475|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703476|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703477|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703478|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703479|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703480|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703481|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703482|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703483|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703484|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703485|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703486|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703487|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703488|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703489|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703490|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703491|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703492|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703493|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703494|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703495|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703496|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703497|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703498|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703499|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703500|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703501|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703502|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703503|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703504|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703505|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703506|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703507|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703508|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703509|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703510|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703511|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703512|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703513|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703514|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703515|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703516|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703517|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703518|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703519|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703520|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703521|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703522|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703523|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703524|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703525|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703526|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703527|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703528|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703529|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703530|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703531|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703532|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703533|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703534|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703535|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703536|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703537|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703538|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703539|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703540|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703541|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703542|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703543|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703544|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703545|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703546|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703547|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703548|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703549|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703550|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703551|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703552|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703553|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703554|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703555|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703556|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703557|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703558|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703559|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703560|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703561|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703562|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703563|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703564|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703565|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703566|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703567|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703568|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703569|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703570|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703571|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703572|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703573|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703574|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703575|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703576|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703577|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703578|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703579|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703580|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703581|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703582|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703583|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703584|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703585|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703586|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703587|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703588|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703589|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703590|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703591|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703592|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703593|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703594|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703595|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703596|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703597|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703598|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703599|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703600|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703601|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703602|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703603|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703604|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703605|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703606|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703607|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703608|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703609|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703610|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703611|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703612|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703613|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703614|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703615|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703616|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703617|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703618|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703619|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703620|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703621|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703622|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703623|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703624|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703625|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703626|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703627|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703628|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703629|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703630|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703631|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703632|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703633|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703634|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703635|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703636|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703637|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703638|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703639|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703640|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703641|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703642|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703643|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703644|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703645|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703646|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703647|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703648|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703649|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703650|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703651|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703652|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703653|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703654|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703655|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703656|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703657|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703658|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703659|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703660|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703661|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703662|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703663|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703664|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703665|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703666|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703667|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703668|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703669|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703670|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703671|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703672|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703673|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703674|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703675|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703676|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703677|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703678|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703679|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703680|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703681|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703682|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703683|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703684|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703685|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703686|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703687|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703688|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703689|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703690|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703691|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703692|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703693|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703694|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703695|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703696|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703697|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703698|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703699|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703700|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703701|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703702|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703703|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703704|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703705|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703706|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703707|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703708|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703709|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703710|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703711|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703712|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703713|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703714|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703715|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703716|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703717|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703718|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703719|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703720|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703721|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703722|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703723|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703724|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703725|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703726|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703727|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703728|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703729|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703730|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703731|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703732|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703733|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703734|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703735|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703736|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703737|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703738|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703739|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703740|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703741|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703742|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703743|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703744|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703745|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703746|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703747|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703748|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703749|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703750|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703751|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703752|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703753|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703754|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703755|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703756|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703757|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703758|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703759|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703760|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703761|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703762|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703763|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703764|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703765|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703766|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703767|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703768|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703769|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703770|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703771|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703772|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703773|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703774|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703775|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703776|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703777|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703778|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703779|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703780|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703781|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703782|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703783|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703784|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703785|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703786|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703787|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703788|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703789|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703790|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703791|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703792|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703793|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703794|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703795|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703796|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703797|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703798|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703799|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703800|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703801|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703802|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703803|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703804|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703805|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703806|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703807|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703808|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703809|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703810|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703811|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703812|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703813|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703814|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703815|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703816|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703817|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703818|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703819|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703820|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703821|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703822|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703823|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703824|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703825|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703826|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703827|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703828|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703829|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703830|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703831|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703832|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703833|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703834|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703835|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703836|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703837|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703838|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703839|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703840|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703841|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703842|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703843|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703844|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703845|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703846|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703847|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703848|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703849|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703850|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703851|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703852|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703853|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703854|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703855|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703856|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703857|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703858|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703859|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703860|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703861|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703862|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703863|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703864|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703865|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703866|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703867|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703868|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703869|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703870|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703871|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703872|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703873|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703874|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703875|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703876|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703877|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703878|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703879|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703880|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703881|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703882|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703883|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703884|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703885|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703886|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703887|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703888|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703889|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703890|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703891|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703892|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703893|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703894|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703895|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703896|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703897|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703898|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703899|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703900|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703901|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703902|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703903|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703904|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703905|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703906|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703907|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703908|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703909|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703910|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703911|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703912|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703913|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703914|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703915|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703916|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703917|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703918|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703919|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703920|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703921|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703922|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703923|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703924|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703925|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703926|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703927|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703928|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703929|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703930|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703931|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703932|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703933|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703934|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703935|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703936|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703937|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703938|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703939|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703940|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703941|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703942|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703943|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703944|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703945|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703946|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703947|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703948|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703949|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703950|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703951|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703952|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703953|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703954|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703955|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703956|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703957|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703958|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703959|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703960|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703961|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703962|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703963|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703964|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703965|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703966|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703967|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703968|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703969|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703970|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703971|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703972|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703973|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703974|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703975|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703976|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703977|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703978|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703979|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703980|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703981|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703982|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703983|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703984|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703985|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703986|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703987|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703988|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703989|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703990|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703991|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703992|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703993|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703994|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703995|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703996|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703997|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703998|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.703999|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704000|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704001|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704002|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704003|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704004|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704005|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704006|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704007|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704008|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704009|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704010|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704011|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704012|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704013|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704014|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704015|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704016|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704017|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704018|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704019|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704020|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704021|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704022|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704023|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704024|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704025|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704026|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704027|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704028|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704029|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704030|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704031|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704032|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704033|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704034|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704035|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704036|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704037|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704038|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704039|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704040|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704041|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704042|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704043|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704044|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704045|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704046|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704047|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704048|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704049|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704050|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704051|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704052|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704053|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704054|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704055|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704056|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704057|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704058|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704059|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704060|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704061|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704062|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704063|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704064|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704065|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704066|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704067|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.3.1.1.704068|4|0x0 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.2|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.11|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.12|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.13|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.14|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.15|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.16|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.17|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.18|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.19|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.20|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.21|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130817|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130818|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130819|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130820|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130821|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130822|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130823|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130824|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130825|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130826|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130827|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130828|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130829|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130830|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130831|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130832|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130833|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130834|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130835|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130836|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130837|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130838|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130839|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130840|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130841|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130842|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130843|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130844|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130845|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130846|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130847|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130848|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130849|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130850|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.130851|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.237105|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.245281|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.253457|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.261633|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.269809|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.277985|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.286161|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.294338|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.294339|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.294340|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621377|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621378|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621379|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621380|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621381|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.621382|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.629553|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.654081|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.654082|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.662257|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.686785|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703137|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703138|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703139|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703140|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703141|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703142|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703143|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703144|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703145|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703146|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703147|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703148|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703149|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703150|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703151|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703152|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703153|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703154|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703155|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703156|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703157|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703158|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703159|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703160|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703161|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703162|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703163|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703164|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703165|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703166|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703167|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703168|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703169|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703170|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703171|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703172|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703173|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703174|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703175|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703176|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703177|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703178|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703179|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703180|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703181|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703182|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703183|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703184|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703185|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703186|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703187|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703188|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703189|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703190|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703191|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703192|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703193|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703194|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703195|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703196|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703197|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703198|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703199|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703200|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703201|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703202|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703203|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703204|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703205|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703206|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703207|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703208|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703209|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703210|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703211|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703212|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703213|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703214|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703215|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703216|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703217|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703218|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703219|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703220|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703221|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703222|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703223|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703224|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703225|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703226|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703227|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703228|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703229|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703230|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703231|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703232|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703233|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703234|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703235|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703236|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703237|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703238|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703239|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703240|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703241|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703242|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703243|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703244|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703245|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703246|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703247|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703248|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703249|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703250|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703251|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703252|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703253|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703254|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703255|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703256|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703257|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703258|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703259|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703260|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703261|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703262|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703263|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703264|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703265|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703266|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703267|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703268|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703269|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703270|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703271|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703272|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703273|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703274|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703275|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703276|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703277|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703278|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703279|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703280|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703281|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703282|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703283|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703284|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703285|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703286|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703287|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703288|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703289|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703290|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703291|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703292|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703293|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703294|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703295|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703296|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703297|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703298|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703299|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703300|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703301|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703302|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703303|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703304|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703305|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703306|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703307|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703308|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703309|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703310|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703311|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703312|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703313|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703314|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703315|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703316|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703317|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703318|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703319|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703320|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703321|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703322|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703323|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703324|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703325|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703326|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703327|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703328|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703329|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703330|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703331|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703332|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703333|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703334|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703335|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703336|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703337|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703338|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703339|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703340|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703341|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703342|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703343|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703344|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703345|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703346|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703347|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703348|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703349|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703350|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703351|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703352|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703353|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703354|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703355|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703356|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703357|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703358|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703359|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703360|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703361|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703362|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703363|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703364|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703365|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703366|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703367|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703368|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703369|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703370|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703371|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703372|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703373|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703374|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703375|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703376|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703377|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703378|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703379|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703380|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703381|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703382|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703383|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703384|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703385|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703386|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703387|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703388|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703389|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703390|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703391|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703392|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703393|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703394|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703395|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703396|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703397|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703398|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703399|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703400|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703401|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703402|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703403|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703404|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703405|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703406|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703407|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703408|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703409|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703410|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703411|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703412|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703413|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703414|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703415|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703416|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703417|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703418|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703419|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703420|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703421|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703422|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703423|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703424|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703425|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703426|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703427|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703428|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703429|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703430|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703431|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703432|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703433|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703434|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703435|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703436|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703437|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703438|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703439|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703440|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703441|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703442|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703443|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703444|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703445|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703446|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703447|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703448|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703449|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703450|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703451|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703452|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703453|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703454|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703455|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703456|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703457|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703458|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703459|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703460|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703461|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703462|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703463|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703464|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703465|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703466|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703467|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703468|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703469|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703470|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703471|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703472|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703473|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703474|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703475|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703476|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703477|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703478|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703479|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703480|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703481|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703482|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703483|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703484|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703485|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703486|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703487|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703488|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703489|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703490|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703491|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703492|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703493|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703494|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703495|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703496|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703497|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703498|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703499|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703500|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703501|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703502|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703503|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703504|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703505|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703506|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703507|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703508|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703509|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703510|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703511|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703512|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703513|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703514|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703515|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703516|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703517|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703518|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703519|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703520|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703521|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703522|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703523|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703524|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703525|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703526|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703527|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703528|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703529|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703530|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703531|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703532|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703533|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703534|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703535|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703536|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703537|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703538|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703539|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703540|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703541|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703542|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703543|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703544|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703545|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703546|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703547|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703548|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703549|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703550|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703551|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703552|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703553|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703554|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703555|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703556|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703557|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703558|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703559|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703560|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703561|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703562|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703563|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703564|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703565|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703566|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703567|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703568|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703569|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703570|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703571|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703572|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703573|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703574|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703575|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703576|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703577|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703578|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703579|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703580|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703581|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703582|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703583|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703584|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703585|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703586|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703587|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703588|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703589|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703590|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703591|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703592|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703593|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703594|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703595|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703596|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703597|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703598|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703599|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703600|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703601|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703602|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703603|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703604|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703605|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703606|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703607|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703608|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703609|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703610|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703611|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703612|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703613|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703614|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703615|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703616|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703617|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703618|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703619|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703620|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703621|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703622|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703623|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703624|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703625|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703626|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703627|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703628|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703629|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703630|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703631|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703632|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703633|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703634|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703635|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703636|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703637|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703638|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703639|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703640|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703641|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703642|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703643|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703644|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703645|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703646|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703647|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703648|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703649|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703650|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703651|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703652|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703653|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703654|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703655|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703656|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703657|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703658|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703659|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703660|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703661|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703662|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703663|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703664|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703665|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703666|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703667|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703668|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703669|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703670|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703671|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703672|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703673|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703674|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703675|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703676|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703677|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703678|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703679|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703680|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703681|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703682|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703683|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703684|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703685|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703686|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703687|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703688|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703689|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703690|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703691|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703692|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703693|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703694|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703695|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703696|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703697|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703698|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703699|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703700|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703701|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703702|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703703|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703704|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703705|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703706|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703707|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703708|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703709|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703710|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703711|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703712|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703713|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703714|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703715|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703716|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703717|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703718|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703719|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703720|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703721|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703722|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703723|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703724|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703725|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703726|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703727|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703728|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703729|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703730|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703731|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703732|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703733|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703734|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703735|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703736|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703737|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703738|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703739|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703740|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703741|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703742|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703743|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703744|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703745|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703746|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703747|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703748|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703749|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703750|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703751|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703752|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703753|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703754|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703755|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703756|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703757|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703758|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703759|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703760|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703761|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703762|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703763|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703764|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703765|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703766|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703767|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703768|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703769|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703770|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703771|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703772|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703773|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703774|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703775|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703776|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703777|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703778|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703779|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703780|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703781|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703782|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703783|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703784|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703785|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703786|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703787|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703788|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703789|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703790|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703791|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703792|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703793|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703794|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703795|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703796|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703797|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703798|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703799|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703800|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703801|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703802|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703803|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703804|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703805|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703806|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703807|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703808|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703809|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703810|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703811|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703812|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703813|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703814|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703815|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703816|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703817|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703818|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703819|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703820|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703821|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703822|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703823|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703824|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703825|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703826|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703827|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703828|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703829|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703830|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703831|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703832|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703833|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703834|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703835|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703836|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703837|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703838|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703839|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703840|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703841|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703842|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703843|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703844|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703845|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703846|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703847|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703848|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703849|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703850|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703851|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703852|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703853|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703854|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703855|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703856|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703857|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703858|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703859|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703860|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703861|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703862|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703863|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703864|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703865|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703866|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703867|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703868|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703869|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703870|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703871|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703872|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703873|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703874|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703875|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703876|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703877|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703878|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703879|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703880|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703881|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703882|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703883|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703884|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703885|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703886|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703887|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703888|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703889|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703890|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703891|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703892|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703893|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703894|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703895|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703896|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703897|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703898|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703899|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703900|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703901|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703902|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703903|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703904|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703905|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703906|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703907|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703908|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703909|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703910|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703911|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703912|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703913|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703914|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703915|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703916|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703917|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703918|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703919|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703920|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703921|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703922|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703923|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703924|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703925|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703926|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703927|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703928|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703929|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703930|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703931|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703932|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703933|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703934|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703935|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703936|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703937|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703938|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703939|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703940|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703941|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703942|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703943|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703944|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703945|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703946|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703947|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703948|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703949|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703950|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703951|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703952|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703953|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703954|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703955|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703956|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703957|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703958|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703959|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703960|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703961|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703962|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703963|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703964|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703965|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703966|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703967|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703968|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703969|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703970|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703971|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703972|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703973|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703974|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703975|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703976|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703977|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703978|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703979|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703980|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703981|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703982|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703983|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703984|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703985|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703986|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703987|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703988|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703989|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703990|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703991|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703992|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703993|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703994|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703995|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703996|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703997|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703998|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.703999|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704000|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704001|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704002|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704003|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704004|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704005|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704006|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704007|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704008|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704009|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704010|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704011|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704012|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704013|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704014|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704015|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704016|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704017|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704018|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704019|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704020|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704021|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704022|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704023|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704024|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704025|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704026|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704027|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704028|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704029|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704030|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704031|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704032|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704033|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704034|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704035|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704036|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704037|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704038|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704039|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704040|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704041|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704042|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704043|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704044|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704045|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704046|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704047|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704048|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704049|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704050|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704051|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704052|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704053|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704054|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704055|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704056|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704057|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704058|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704059|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704060|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704061|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704062|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704063|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704064|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704065|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704066|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704067|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.4.1.1.704068|2|3 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.2|4x|2f626f6f74666c6173682f +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.11|4x|2f626f6f74666c6173682f6c6f73742b666f756e64 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.12|4x|2f626f6f74666c6173682f43393830302d4c2d756e6976657273616c6b395f776c632e31372e30392e3034612e5350412e62696e +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.13|4x|2f626f6f74666c6173682f766c616e2e646174 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.14|4x|2f626f6f74666c6173682f737364 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.15|4x|2f626f6f74666c6173682f61715f7068795f66775f757067726164655f6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.16|4x|2f626f6f74666c6173682f6d656d6c65616b2e74636c +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.17|4x|2f626f6f74666c6173682f7468726f7567687075745f6d6f6e69746f725f706172616d73 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.18|4x|2f626f6f74666c6173682f646562756754726163655f626364642e633232342e636263372e747874 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.19|4x|2f626f6f74666c6173682f6d6f64655f6576656e745f6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.20|4x|2f626f6f74666c6173682f7061636b616765732e636f6e66 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.21|4x|2f626f6f74666c6173682f646562756754726163655f353030322e393164362e316131332e747874 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130817|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130818|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303137303130385f3031333035332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130819|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303137303130385f3031343132392e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130820|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303137303130385f3031353830302e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130821|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303137303130385f3032303435332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130822|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303137303130385f3032313032342e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130823|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233303432355f3031333030342e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130824|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233303531355f3033313635332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130825|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233303931375f3035353133302e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130826|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233303931375f3233313233312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130827|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313030315f3039323730342e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130828|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313130315f3137333834372e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130829|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313130315f3233333934302e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130830|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313130375f3132303933372e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130831|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313231375f3133303932362e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130832|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313232355f3133333232342e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130833|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303233313232355f3139333331382e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130834|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303230315f3132333330352e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130835|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303330345f3230333330352e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130836|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303430375f3134323731332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130837|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303431325f3037353734332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130838|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303431325f3132333133312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130839|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303530345f3133333131382e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130840|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303531365f3137303133372e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130841|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303532375f3133333131382e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130842|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303532385f3132313734312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130843|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303532385f3134343335312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130844|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303532385f3136343135332e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130845|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303533305f3035313932312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130846|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303533305f3230323932302e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130847|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303533315f3039313732312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130848|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303533315f3132323331322e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130849|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303730345f3133323235382e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130850|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303731325f3039323635342e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.130851|4x|2f626f6f74666c6173682f6c6963656e73655f65766c6f672f53414576656e74526567756c617232303234303831355f3130323634312e6c6f67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.237105|4x|2f626f6f74666c6173682f5348415245442d494f58 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.245281|4x|2f626f6f74666c6173682f6365727473 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.253457|4x|2f626f6f74666c6173682f2e67656f +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.261633|4x|2f626f6f74666c6173682f2e5553574150 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.269809|4x|2f626f6f74666c6173682f2e55535741502f7270 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.277985|4x|2f626f6f74666c6173682f2e55535741502f6670 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.286161|4x|2f626f6f74666c6173682f2e55535741502f6363 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.294338|4x|2f626f6f74666c6173682f43393830302d4c2d756e6976657273616c6b395f776c632e31372e30392e3034612e5350412e312e636f6e66 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.294339|4x|2f626f6f74666c6173682f43393830302d4c2d6d6f6e6f2d756e6976657273616c6b395f776c632e31372e30392e3034612e5350412e706b67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.294340|4x|2f626f6f74666c6173682f43393830302d4c2d7270626f6f742e31372e30392e3034612e5350412e706b67 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621377|4x|2f626f6f74666c6173682f2e646270657273697374 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621378|4x|2f626f6f74666c6173682f2e6462706572736973742f444d495f53544154455f4442 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621379|4x|2f626f6f74666c6173682f2e6462706572736973742f444d495f53544154455f44422f444d495f53544154455f4442 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621380|4x|2f626f6f74666c6173682f2e6462706572736973742f444d495f53544154455f44422f444d495f53544154455f44422e6d657461 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621381|4x|2f626f6f74666c6173682f2e6462706572736973742f7374617473 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.621382|4x|2f626f6f74666c6173682f2e6462706572736973742f45574c435f41505f555047524144455f4442 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.629553|4x|2f626f6f74666c6173682f2e6462706572736973742f686973746f7279 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.654081|4x|2f626f6f74666c6173682f636f7265 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.654082|4x|2f626f6f74666c6173682f636f72652f2e63616c6c686f6d65 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.662257|4x|2f626f6f74666c6173682f636f72652f6d6f64756c6573 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.686785|4x|2f626f6f74666c6173682f696f785f686f73745f646174615f7368617265 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703137|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313434362e32303234303831313036333635352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703138|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313434372e32303234303831313037313630302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703139|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313434382e32303234303831313037353335362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703140|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313434392e32303234303831313038333132352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703141|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435302e32303234303831313039303832322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703142|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435312e32303234303831313039353032302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703143|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435322e32303234303831313130333435312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703144|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435332e32303234303831313131313933312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703145|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435342e32303234303831313131353830302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703146|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435352e32303234303831313132333731382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703147|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435362e32303234303831313133323330312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703148|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539302e32303234303831343035323633392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703149|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435372e32303234303831313134303535372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703150|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435382e32303234303831313134343834382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703151|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313435392e32303234303831313135323731322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703152|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436302e32303234303831313136303831382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703153|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436312e32303234303831313136353032352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703154|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436322e32303234303831313137333331332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703155|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830322e32303234303831383132303131302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703156|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436332e32303234303831313138313634302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703157|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436342e32303234303831313138353834372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703158|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436352e32303234303831313139343433342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703159|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436362e32303234303831313230323833302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703160|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f312e32303234303731323031333130332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703161|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436372e32303234303831313231313231382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703162|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436382e32303234303831313231353330322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703163|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313436392e32303234303831313232333035342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703164|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437302e32303234303831313233303635392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703165|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437312e32303234303831313233333833342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703166|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437322e32303234303831323030313035392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703167|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437332e32303234303831323030343131382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703168|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437342e32303234303831323031303830362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703169|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437352e32303234303831323031333431392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703170|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437362e32303234303831323032303230342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703171|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437372e32303234303831323032323932332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703172|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437382e32303234303831323032353430322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703173|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313437392e32303234303831323033313632372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703174|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438302e32303234303831323033343131342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703175|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438312e32303234303831323034303531312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703176|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438322e32303234303831323034323930352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703177|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438332e32303234303831323034353433352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703178|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438342e32303234303831323035313935372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703179|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438352e32303234303831323035343435362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703180|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438362e32303234303831323036303935382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703181|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438372e32303234303831323036333634372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703182|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438382e32303234303831323037303034382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703183|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313438392e32303234303831323037323535322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703184|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439302e32303234303831323037343935322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703185|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439312e32303234303831323038313231322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703186|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439322e32303234303831323038333431392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703187|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439332e32303234303831323038353532372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703188|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439342e32303234303831323039313930312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703189|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439352e32303234303831323039343332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703190|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439362e32303234303831323130303832332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703191|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439372e32303234303831323130333635342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703192|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439382e32303234303831323131303332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703193|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313439392e32303234303831323131333331362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703194|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530302e32303234303831323132303332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703195|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530312e32303234303831323132333231322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703196|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530322e32303234303831323133303132302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703197|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530332e32303234303831323133323931362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703198|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530342e32303234303831323134303033362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703199|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530352e32303234303831323134333031382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703200|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530362e32303234303831323134353835362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703201|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530372e32303234303831323135323830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703202|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530382e32303234303831323136303030312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703203|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313530392e32303234303831323136333231352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703204|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531302e32303234303831323136353934332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703205|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531312e32303234303831323137323635352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703206|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531322e32303234303831323137353434342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703207|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531332e32303234303831323138323934382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703208|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531342e32303234303831323138353730362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703209|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531352e32303234303831323139323635322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703210|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531362e32303234303831323139353532342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703211|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531372e32303234303831323230323434312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703212|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531382e32303234303831323230353235342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703213|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313531392e32303234303831323231323534392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703214|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532302e32303234303831323231353830392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703215|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532312e32303234303831323232333230352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703216|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532322e32303234303831323233303231372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703217|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532332e32303234303831323233323930362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703218|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532342e32303234303831323233353631342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703219|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532352e32303234303831333030323030332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703220|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532362e32303234303831333030343131382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703221|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532372e32303234303831333031303332302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703222|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532382e32303234303831333031323833352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703223|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313532392e32303234303831333031353231372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703224|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533302e32303234303831333032313531392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703225|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533312e32303234303831333032333730382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703226|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533322e32303234303831333033303131322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703227|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533332e32303234303831333033323633312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703228|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533342e32303234303831333033343830382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703229|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533352e32303234303831333034313230302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703230|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533362e32303234303831333034333732362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703231|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533372e32303234303831333035303231372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703232|4x|2f626f6f74666c6173682f74726163656c6f67732f6379616e696e69745f52302d302e343433305f302e32303234303532393231313831332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703233|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533382e32303234303831333035323630332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703234|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313533392e32303234303831333035353134342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703235|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534302e32303234303831333036313533302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703236|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534312e32303234303831333036343330382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703237|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534322e32303234303831333037303831392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703238|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534332e32303234303831333037333530332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703239|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534342e32303234303831333037353930362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703240|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534352e32303234303831333038323235392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703241|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534362e32303234303831333038343735332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703242|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534372e32303234303831333039313231382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703243|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534382e32303234303831333039333632302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703244|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313534392e32303234303831333130303032332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703245|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535302e32303234303831333130323635312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703246|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535312e32303234303831333131303132332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703247|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535322e32303234303831333131333032382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703248|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535332e32303234303831333131353630312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703249|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535342e32303234303831333132323530372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703250|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535352e32303234303831333132353432322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703251|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535362e32303234303831333133323530362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703252|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535372e32303234303831333133353733342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703253|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535382e32303234303831333134323732302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703254|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313535392e32303234303831333134353335312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703255|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536302e32303234303831333135323334302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703256|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536312e32303234303831333135353332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703257|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536322e32303234303831333136323431342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703258|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536332e32303234303831333136353334342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703259|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536342e32303234303831333137323731322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703260|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536352e32303234303831333138303030342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703261|4x|2f626f6f74666c6173682f74726163656c6f67732f6379616e696e69745f52302d302e343438365f302e32303234303533303132323831322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703262|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536362e32303234303831333138323930392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703263|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536372e32303234303831333138353731332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703264|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536382e32303234303831333139323733322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703265|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313536392e32303234303831333139353831322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703266|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537302e32303234303831333230323935322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703267|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537312e32303234303831333231303231372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703268|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537322e32303234303831333231333531322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703269|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537332e32303234303831333232303635372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703270|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537342e32303234303831333232343132362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703271|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537352e32303234303831333233313334322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703272|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537362e32303234303831333233343335332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703273|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537372e32303234303831343030313131342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703274|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537382e32303234303831343030333531322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703275|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313537392e32303234303831343031303031382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703276|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538302e32303234303831343031323134362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703277|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538312e32303234303831343031343532342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703278|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538322e32303234303831343032313234362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703279|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538332e32303234303831343032333830392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703280|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538342e32303234303831343033303332312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703281|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538352e32303234303831343033323835312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703282|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538362e32303234303831343033353231312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703283|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538372e32303234303831343034313432372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703284|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538382e32303234303831343034333734332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703285|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313538392e32303234303831343035303135332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703286|4x|2f626f6f74666c6173682f74726163656c6f67732f6379616e696e69745f52302d302e343437305f302e32303234303533313031313631332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703287|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539312e32303234303831343035353031362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703288|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539322e32303234303831343036313334332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703289|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539332e32303234303831343036333735362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703290|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539342e32303234303831343037303235352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703291|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539352e32303234303831343037323831332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703292|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830332e32303234303831383132333732302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703293|4x|2f626f6f74666c6173682f74726163656c6f67732f6379616e696e69745f52302d302e343435355f302e32303234303533313034323230322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703294|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539362e32303234303831343037353432352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703295|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539372e32303234303831343038323035352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703296|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539382e32303234303831343038343332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703297|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313539392e32303234303831343039303532362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703298|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630302e32303234303831343039323631352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703299|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630312e32303234303831343039353130382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703300|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630322e32303234303831343130313830362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703301|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630332e32303234303831343130343332332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703302|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630342e32303234303831343131313530382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703303|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630352e32303234303831343131343334352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703304|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630362e32303234303831343132303930392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703305|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630372e32303234303831343132333633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703306|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630382e32303234303831343133303334352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703307|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313630392e32303234303831343133333333382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703308|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631302e32303234303831343134303334312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703309|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631312e32303234303831343134333535372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703310|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631322e32303234303831343135303434342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703311|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631332e32303234303831343135333231302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703312|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631342e32303234303831343136303031372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703313|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631352e32303234303831343136323934332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703314|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631362e32303234303831343137303130382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703315|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631372e32303234303831343137333234392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703316|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631382e32303234303831343138303230332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703317|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313631392e32303234303831343138333034352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703318|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632302e32303234303831343139303135312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703319|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632312e32303234303831343139333034352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703320|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632322e32303234303831343230303033312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703321|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632332e32303234303831343230333030392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703322|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632342e32303234303831343231303035372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703323|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632352e32303234303831343231333033382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703324|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632362e32303234303831343232303630382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703325|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632372e32303234303831343232343034322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703326|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632382e32303234303831343233313135392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703327|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313632392e32303234303831343233343134312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703328|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633302e32303234303831353030303731352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703329|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633312e32303234303831353030333331302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703330|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633322e32303234303831353030353832382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703331|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633332e32303234303831353031323735352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703332|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633342e32303234303831353031353834372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703333|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633352e32303234303831353032323734352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703334|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633362e32303234303831353032353432342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703335|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633372e32303234303831353033323134322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703336|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633382e32303234303831353033343931362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703337|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313633392e32303234303831353034313535362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703338|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634302e32303234303831353034343235302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703339|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634312e32303234303831353035313331382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703340|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634322e32303234303831353035343130392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703341|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634332e32303234303831353036303732322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703342|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634342e32303234303831353036333332342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703343|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634352e32303234303831353037303030372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703344|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634362e32303234303831353037323630342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703345|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634372e32303234303831353037353333352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703346|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634382e32303234303831353038323033302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703347|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313634392e32303234303831353038343532362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703348|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635302e32303234303831353039313134392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703349|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635312e32303234303831353039333731312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703350|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635322e32303234303831353130303233372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703351|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635332e32303234303831353130333033302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703352|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635342e32303234303831353131303234362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703353|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635352e32303234303831353131333433332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703354|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635362e32303234303831353132303233372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703355|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635372e32303234303831353132333134362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703356|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635382e32303234303831353133303034332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703357|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313635392e32303234303831353133333035392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703358|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636302e32303234303831353134303033342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703359|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636312e32303234303831353134323731392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703360|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636322e32303234303831353134353732332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703361|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636332e32303234303831353135323732342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703362|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636342e32303234303831353135353533382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703363|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636352e32303234303831353136323635362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703364|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636362e32303234303831353136353932342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703365|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636372e32303234303831353137333033312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703366|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636382e32303234303831353137353930382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703367|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313636392e32303234303831353138323833382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703368|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637302e32303234303831353138353930342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703369|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637312e32303234303831353139323734362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703370|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637322e32303234303831353139353733302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703371|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637332e32303234303831353230333235322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703372|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637342e32303234303831353231303534332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703373|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637352e32303234303831353231333931302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703374|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637362e32303234303831353232313032352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703375|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637372e32303234303831353232343133312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703376|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637382e32303234303831353233313134342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703377|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313637392e32303234303831353233333833322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703378|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638302e32303234303831363030303431352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703379|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638312e32303234303831363030323630302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703380|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638322e32303234303831363030343730362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703381|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638332e32303234303831363031313135322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703382|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638342e32303234303831363031333535372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703383|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638352e32303234303831363031353834342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703384|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638362e32303234303831363032323434392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703385|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638372e32303234303831363032343933372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703386|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638382e32303234303831363033313330302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703387|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313638392e32303234303831363033333533312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703388|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639302e32303234303831363033353734302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703389|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639312e32303234303831363034313934352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703390|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639322e32303234303831363034343332332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703391|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639332e32303234303831363035303831312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703392|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639342e32303234303831363035333334342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703393|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639352e32303234303831363036303130342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703394|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639362e32303234303831363036323534332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703395|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639372e32303234303831363036343930302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703396|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639382e32303234303831363037313430382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703397|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313639392e32303234303831363037333931382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703398|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730302e32303234303831363038303534382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703399|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730312e32303234303831363038333032312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703400|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730322e32303234303831363038353730302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703401|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730332e32303234303831363039323034352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703402|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730342e32303234303831363039343635362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703403|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730352e32303234303831363130313430332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703404|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730362e32303234303831363130343233332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703405|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730372e32303234303831363131313632322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703406|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730382e32303234303831363131343635362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703407|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313730392e32303234303831363132313331332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703408|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731302e32303234303831363132343132302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703409|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731312e32303234303831363133313033332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703410|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731322e32303234303831363133343032342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703411|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731332e32303234303831363134303631312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703412|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731342e32303234303831363134333533322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703413|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731352e32303234303831363135303830332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703414|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731362e32303234303831363135333732332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703415|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731372e32303234303831363136303931302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703416|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731382e32303234303831363136343030302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703417|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313731392e32303234303831363137313133322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703418|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732302e32303234303831363137343033322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703419|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732312e32303234303831363138313030362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703420|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732322e32303234303831363138333933302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703421|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732332e32303234303831363139313034372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703422|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732342e32303234303831363139343034302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703423|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732352e32303234303831363230313631392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703424|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732362e32303234303831363230353032362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703425|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732372e32303234303831363231323034392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703426|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732382e32303234303831363231343935392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703427|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313732392e32303234303831363232313935392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703428|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733302e32303234303831363232353431362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703429|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733312e32303234303831363233323730352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703430|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733322e32303234303831363233353531372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703431|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733332e32303234303831373030323330332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703432|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733342e32303234303831373030353031382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703433|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733352e32303234303831373031313635302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703434|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733362e32303234303831373031343731382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703435|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733372e32303234303831373032313734392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703436|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733382e32303234303831373032343533362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703437|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313733392e32303234303831373033313433372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703438|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734302e32303234303831373033333935342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703439|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734312e32303234303831373034303531362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703440|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734322e32303234303831373034333230372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703441|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734332e32303234303831373035303230312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703442|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734342e32303234303831373035333430382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703443|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734352e32303234303831373036303531392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703444|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734362e32303234303831373036333434332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703445|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734372e32303234303831373037303335362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703446|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734382e32303234303831373037333335392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703447|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313734392e32303234303831373038303235392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703448|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735302e32303234303831373038333032302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703449|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735312e32303234303831373039303130362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703450|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735322e32303234303831373039333031342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703451|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735332e32303234303831373039353830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703452|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735342e32303234303831373130333034312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703453|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735352e32303234303831373131303233392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703454|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735362e32303234303831373131333230342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703455|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735372e32303234303831373132303131332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703456|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735382e32303234303831373132323935342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703457|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313735392e32303234303831373132353732352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703458|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736302e32303234303831373133323632392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703459|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736312e32303234303831373133353830372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703460|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736322e32303234303831373134323730372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703461|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736332e32303234303831373134353531352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703462|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736342e32303234303831373135323433342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703463|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736352e32303234303831373135353530302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703464|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736362e32303234303831373136323632322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703465|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736372e32303234303831373136353630362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703466|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736382e32303234303831373137323635342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703467|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313736392e32303234303831373137353632372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703468|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737302e32303234303831373138323333392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703469|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737312e32303234303831373138353331302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703470|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737322e32303234303831373139323432312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703471|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737332e32303234303831373139353735302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703472|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737342e32303234303831373230333034332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703473|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737352e32303234303831373231303433342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703474|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737362e32303234303831373231333535382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703475|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737372e32303234303831373232313133362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703476|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737382e32303234303831373232343430312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703477|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313737392e32303234303831373233313633372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703478|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738302e32303234303831373233343930322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703479|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738312e32303234303831383030323030342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703480|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738322e32303234303831383030343933372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703481|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738332e32303234303831383031323235332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703482|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738342e32303234303831383031353632372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703483|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738352e32303234303831383032323732342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703484|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738362e32303234303831383032353730352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703485|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738372e32303234303831383033323833302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703486|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738382e32303234303831383034303235312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703487|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313738392e32303234303831383034333932372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703488|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739302e32303234303831383035313335342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703489|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739312e32303234303831383035343930332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703490|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739322e32303234303831383036323331312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703491|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739332e32303234303831383036353731382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703492|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739342e32303234303831383037323931372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703493|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739352e32303234303831383037353931362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703494|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739362e32303234303831383038323833382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703495|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739372e32303234303831383038353833332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703496|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739382e32303234303831383039333130372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703497|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313739392e32303234303831383130303633372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703498|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830302e32303234303831383130343434342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703499|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830312e32303234303831383131323435342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703500|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f302e32303234303731323031323630392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703501|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830342e32303234303831383133313732382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703502|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830352e32303234303831383133353431322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703503|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830362e32303234303831383134333234322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703504|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830372e32303234303831383135313133392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703505|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830382e32303234303831383135353030352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703506|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313830392e32303234303831383136333032382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703507|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831302e32303234303831383137313133372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703508|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831312e32303234303831383137353231382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703509|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831322e32303234303831383138333434352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703510|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831332e32303234303831383139313631302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703511|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831342e32303234303831383139353732392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703512|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831352e32303234303831383230333930352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703513|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831362e32303234303831383231323130392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703514|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831372e32303234303831383232303133372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703515|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831382e32303234303831383232333335382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703516|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313831392e32303234303831383233303631382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703517|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832302e32303234303831383233333734352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703518|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832312e32303234303831393030303133312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703519|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832322e32303234303831393030323630392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703520|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832332e32303234303831393030353131372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703521|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832342e32303234303831393031313932382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703522|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832352e32303234303831393031343734322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703523|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832362e32303234303831393032313435392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703524|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832372e32303234303831393032343431342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703525|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832382e32303234303831393033313032302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703526|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313832392e32303234303831393033333333332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703527|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833302e32303234303831393033353835372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703528|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833312e32303234303831393034323330352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703529|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833322e32303234303831393034343835312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703530|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833332e32303234303831393035313434332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703531|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833342e32303234303831393035333834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703532|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833352e32303234303831393036303530372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703533|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833362e32303234303831393036333132312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703534|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833372e32303234303831393036353834302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703535|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833382e32303234303831393037323235392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703536|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313833392e32303234303831393037343632342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703537|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834302e32303234303831393038303535362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703538|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834312e32303234303831393038323934372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703539|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834322e32303234303831393038353534392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703540|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834332e32303234303831393039323031362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703541|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834342e32303234303831393039343434322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703542|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834352e32303234303831393130303930382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703543|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834362e32303234303831393130333832372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703544|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834372e32303234303831393131313032382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703545|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834382e32303234303831393131343032332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703546|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313834392e32303234303831393132303933372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703547|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835302e32303234303831393132333731322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703548|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835312e32303234303831393133303334362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703549|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835322e32303234303831393133333032302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703550|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835332e32303234303831393133353832322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703551|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835342e32303234303831393134323735302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703552|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835352e32303234303831393134353831342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703553|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835362e32303234303831393135323832322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703554|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835372e32303234303831393135353532382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703555|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835382e32303234303831393136323535322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703556|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313835392e32303234303831393136353833302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703557|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836302e32303234303831393137333133332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703558|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836312e32303234303831393138303432372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703559|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836322e32303234303831393138343034362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703560|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836332e32303234303831393139313635302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703561|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836342e32303234303831393139343932322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703562|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836352e32303234303831393230323230322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703563|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836362e32303234303831393230353332302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703564|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836372e32303234303831393231323530352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703565|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836382e32303234303831393231353731302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703566|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313836392e32303234303831393232323633312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703567|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837302e32303234303831393232353633392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703568|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837312e32303234303831393233323533332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703569|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837322e32303234303831393233353132322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703570|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837332e32303234303832303030313830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703571|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837342e32303234303832303030343233372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703572|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837352e32303234303832303030353632392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703573|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837362e32303234303832303031313834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703574|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837372e32303234303832303031343331342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703575|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837382e32303234303832303032303733342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703576|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313837392e32303234303832303032333231352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703577|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838302e32303234303832303032353432362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703578|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838312e32303234303832303033313633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703579|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838322e32303234303832303033333834342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703580|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838332e32303234303832303034303230352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703581|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838342e32303234303832303034323631362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703582|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838352e32303234303832303034353232342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703583|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838362e32303234303832303035313733322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703584|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838372e32303234303832303035343231352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703585|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838382e32303234303832303036303633342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703586|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313838392e32303234303832303036323933352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703587|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839302e32303234303832303036353230302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703588|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839312e32303234303832303037313730332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703589|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839322e32303234303832303037343135312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703590|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839332e32303234303832303038303730372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703591|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839342e32303234303832303038333230332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703592|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839352e32303234303832303038353434302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703593|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839362e32303234303832303039313931392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703594|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839372e32303234303832303039343330382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703595|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839382e32303234303832303130303734322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703596|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313839392e32303234303832303130333730362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703597|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930302e32303234303832303131303931342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703598|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930312e32303234303832303131343133362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703599|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930322e32303234303832303132303933362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703600|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930332e32303234303832303132343132312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703601|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930342e32303234303832303133303733392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703602|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930352e32303234303832303133333530312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703603|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930362e32303234303832303134303331392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703604|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930372e32303234303832303134333035302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703605|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930382e32303234303832303134353934382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703606|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313930392e32303234303832303135323833342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703607|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931302e32303234303832303135353631362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703608|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931312e32303234303832303136323435382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703609|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931322e32303234303832303136353435342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703610|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931332e32303234303832303137323534322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703611|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931342e32303234303832303137353235312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703612|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931352e32303234303832303138323131332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703613|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931362e32303234303832303138343830332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703614|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931372e32303234303832303139323031372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703615|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931382e32303234303832303139353335362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703616|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313931392e32303234303832303230323331342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703617|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932302e32303234303832303230353331312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703618|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932312e32303234303832303231313934362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703619|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932322e32303234303832303231343631372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703620|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932332e32303234303832303232313134372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703621|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932342e32303234303832303232333831352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703622|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932352e32303234303832303233303833362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703623|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932362e32303234303832303233333535352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703624|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932372e32303234303832313030303233332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703625|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932382e32303234303832313030323535302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703626|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313932392e32303234303832313030343934322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703627|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933302e32303234303832313031313334312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703628|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933312e32303234303832313031333733322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703629|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933322e32303234303832313032303030302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703630|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933332e32303234303832313032323434342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703631|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933342e32303234303832313032343832332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703632|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933352e32303234303832313033313430342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703633|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933362e32303234303832313033333835312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703634|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933372e32303234303832313034303131382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703635|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933382e32303234303832313034323430372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703636|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313933392e32303234303832313034343831382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703637|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934302e32303234303832313035313335372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703638|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934312e32303234303832313035333833392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703639|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934322e32303234303832313036303133322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703640|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934332e32303234303832313036323533362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703641|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934342e32303234303832313036343930342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703642|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934352e32303234303832313037313231362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703643|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934362e32303234303832313037333830392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703644|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934372e32303234303832313038303231352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703645|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934382e32303234303832313038323633302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703646|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313934392e32303234303832313038343932362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703647|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935302e32303234303832313039313435342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703648|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935312e32303234303832313039343133302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703649|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935322e32303234303832313130303431332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703650|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935332e32303234303832313130333230392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703651|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935342e32303234303832313131303331382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703652|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935352e32303234303832313131333532312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703653|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935362e32303234303832313132303333322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703654|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935372e32303234303832313132333133322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703655|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935382e32303234303832313133303031332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703656|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313935392e32303234303832313133323833332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703657|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936302e32303234303832313133353831322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703658|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936312e32303234303832313134323931352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703659|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936322e32303234303832313135303230352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703660|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936332e32303234303832313135333433392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703661|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936342e32303234303832313136303230312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703662|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936352e32303234303832313136333331342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703663|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936362e32303234303832313137303531392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703664|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936372e32303234303832313137333831322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703665|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936382e32303234303832313138313230392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703666|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313936392e32303234303832313138343433382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703667|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937302e32303234303832313139313635322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703668|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937312e32303234303832313139343633372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703669|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937322e32303234303832313230313932382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703670|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937332e32303234303832313230343930362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703671|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937342e32303234303832313231323030352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703672|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937352e32303234303832313231343934352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703673|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937362e32303234303832313232313731342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703674|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937372e32303234303832313232343730312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703675|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937382e32303234303832313233313635382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703676|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313937392e32303234303832313233343233392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703677|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938302e32303234303832323030303733372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703678|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938312e32303234303832323030333135362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703679|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938322e32303234303832323030353433382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703680|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938332e32303234303832323031313832312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703681|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938342e32303234303832323031323930312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703682|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938352e32303234303832323031353332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703683|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938362e32303234303832323032313733302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703684|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938372e32303234303832323032343234382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703685|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938382e32303234303832323033303633332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703686|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313938392e32303234303832323033333133362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703687|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939302e32303234303832323033353732382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703688|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939312e32303234303832323034323430352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703689|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939322e32303234303832323034353031322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703690|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939332e32303234303832323035313830352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703691|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939342e32303234303832323035343334322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703692|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939352e32303234303832323036313130372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703693|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939362e32303234303832323036333535392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703694|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939372e32303234303832323037303034392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703695|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939382e32303234303832323037323634362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703696|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313939392e32303234303832323037353334352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703697|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030302e32303234303832323038323032352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703698|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030312e32303234303832323038343434332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703699|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030322e32303234303832323039313235312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703700|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030332e32303234303832323039333730352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703701|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030342e32303234303832323130303030342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703702|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030352e32303234303832323130323834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703703|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030362e32303234303832323131303030362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703704|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030372e32303234303832323131333430372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703705|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030382e32303234303832323132303331322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703706|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323030392e32303234303832323132333034342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703707|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323031302e32303234303832323133303133312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703708|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323031312e32303234303832323133333631312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703709|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323031322e32303234303832323134303735372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703710|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f323031332e32303234303832323134333935322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703711|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3833362e32303234303732393232353933332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703712|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3833372e32303234303732393233323830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703713|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3833382e32303234303732393233353434332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703714|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3833392e32303234303733303030313830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703715|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834302e32303234303733303030343135302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703716|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834312e32303234303733303031303735322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703717|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834322e32303234303733303031333135372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703718|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834332e32303234303733303031353835332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703719|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834342e32303234303733303032323132372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703720|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834352e32303234303733303032333931362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703721|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834362e32303234303733303033303435322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703722|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834372e32303234303733303033323930352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703723|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834382e32303234303733303033353134372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703724|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3834392e32303234303733303034313434312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703725|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835302e32303234303733303034333732352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703726|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835312e32303234303733303035303133372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703727|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835322e32303234303733303035323431342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703728|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835332e32303234303733303035343735312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703729|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835342e32303234303733303036313231302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703730|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835352e32303234303733303036333634322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703731|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835362e32303234303733303037303231382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703732|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835372e32303234303733303037323630332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703733|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835382e32303234303733303037343931322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703734|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3835392e32303234303733303038313335322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703735|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836302e32303234303733303038333735372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703736|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836312e32303234303733303039303133382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703737|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836322e32303234303733303039323634372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703738|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836332e32303234303733303039353233322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703739|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836342e32303234303733303130313735332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703740|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836352e32303234303733303130343831332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703741|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836362e32303234303733303131323033302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703742|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836372e32303234303733303131343632362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703743|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836382e32303234303733303132313130362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703744|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3836392e32303234303733303132333734342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703745|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837302e32303234303733303133303634372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703746|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837312e32303234303733303133333932312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703747|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837322e32303234303733303134313232342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703748|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837332e32303234303733303134343232302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703749|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837342e32303234303733303135313235372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703750|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837352e32303234303733303135343230352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703751|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837362e32303234303733303136313031342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703752|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837372e32303234303733303136343133372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703753|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837382e32303234303733303137313633352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703754|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3837392e32303234303733303137343833342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703755|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838302e32303234303733303138313931382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703756|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838312e32303234303733303138343730302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703757|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838322e32303234303733303139313730382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703758|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838332e32303234303733303139343732342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703759|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838342e32303234303733303230313932372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703760|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838352e32303234303733303230343733342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703761|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838362e32303234303733303231313930342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703762|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838372e32303234303733303231343833312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703763|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838382e32303234303733303232313730322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703764|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3838392e32303234303733303232343533342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703765|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839302e32303234303733303233313434382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703766|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839312e32303234303733303233343535362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703767|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839322e32303234303733313030313034352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703768|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839332e32303234303733313030333435352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703769|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839342e32303234303733313031303032352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703770|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839352e32303234303733313031323534302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703771|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839362e32303234303733313031353134332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703772|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839372e32303234303733313032323032352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703773|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839382e32303234303733313032343730322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703774|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3839392e32303234303733313033313131392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703775|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930302e32303234303733313033333432302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703776|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930312e32303234303733313033353530312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703777|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930322e32303234303733313034323034352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703778|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930332e32303234303733313034343733372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703779|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930342e32303234303733313035313533352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703780|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930352e32303234303733313035343033392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703781|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930362e32303234303733313036303531312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703782|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930372e32303234303733313036323931332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703783|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930382e32303234303733313036353035312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703784|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3930392e32303234303733313037313135392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703785|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931302e32303234303733313037333531382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703786|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931312e32303234303733313037353835392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703787|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931322e32303234303733313038323135352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703788|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931332e32303234303733313038343334372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703789|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931342e32303234303733313039303635302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703790|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931352e32303234303733313039333035362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703791|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931362e32303234303733313039353332312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703792|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931372e32303234303733313130313734312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703793|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931382e32303234303733313130343734302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703794|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3931392e32303234303733313131313932382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703795|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932302e32303234303733313131343832392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703796|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932312e32303234303733313132313631302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703797|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932322e32303234303733313132343431332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703798|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932332e32303234303733313133313431392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703799|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932342e32303234303733313133343531372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703800|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932352e32303234303733313134313630322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703801|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932362e32303234303733313134343435392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703802|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932372e32303234303733313135313330342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703803|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932382e32303234303733313135343434372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703804|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3932392e32303234303733313136313831302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703805|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933302e32303234303733313136353130312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703806|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933312e32303234303733313137323430372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703807|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933322e32303234303733313137353633302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703808|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933332e32303234303733313138323832332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703809|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933342e32303234303733313139303035342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703810|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933352e32303234303733313139333731302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703811|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933362e32303234303733313230313134392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703812|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933372e32303234303733313230343133392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703813|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933382e32303234303733313231313231332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703814|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3933392e32303234303733313231343430382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703815|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934302e32303234303733313232313335352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703816|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934312e32303234303733313232343630302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703817|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934322e32303234303733313233313730332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703818|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934332e32303234303733313233343533312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703819|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934342e32303234303830313030313130302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703820|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934352e32303234303830313030333333332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703821|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934362e32303234303830313030353733322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703822|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934372e32303234303830313031313933322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703823|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934382e32303234303830313031343235312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703824|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3934392e32303234303830313032303633342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703825|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935302e32303234303830313032323934302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703826|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935312e32303234303830313032353333332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703827|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935322e32303234303830313033313633332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703828|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935332e32303234303830313033343033342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703829|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935342e32303234303830313034303333332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703830|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935352e32303234303830313034323635312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703831|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935362e32303234303830313034353133392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703832|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935372e32303234303830313035313732312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703833|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935382e32303234303830313035343232392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703834|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3935392e32303234303830313036303635372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703835|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936302e32303234303830313036333033332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703836|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936312e32303234303830313036353431342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703837|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936322e32303234303830313037313630332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703838|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936332e32303234303830313037333834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703839|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936342e32303234303830313038303131372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703840|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936352e32303234303830313038323630372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703841|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936362e32303234303830313038343834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703842|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936372e32303234303830313039313130352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703843|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936382e32303234303830313039333335352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703844|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3936392e32303234303830313039353535322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703845|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937302e32303234303830313130313834302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703846|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937312e32303234303830313130343730322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703847|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937322e32303234303830313131313434312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703848|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937332e32303234303830313131343033392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703849|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937342e32303234303830313132303930312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703850|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937352e32303234303830313132333930372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703851|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937362e32303234303830313133303831342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703852|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937372e32303234303830313133333932332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703853|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937382e32303234303830313134313335372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703854|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3937392e32303234303830313134343434372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703855|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938302e32303234303830313135313234322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703856|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938312e32303234303830313135343231302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703857|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938322e32303234303830313136313533382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703858|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938332e32303234303830313136343832352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703859|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938342e32303234303830313137323632382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703860|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938352e32303234303830313138303030342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703861|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938362e32303234303830313138323933392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703862|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938372e32303234303830313138353930382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703863|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938382e32303234303830313139333035332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703864|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3938392e32303234303830313230303732382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703865|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939302e32303234303830313230333933382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703866|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939312e32303234303830313231313335302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703867|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939322e32303234303830313231343434332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703868|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939332e32303234303830313232313432362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703869|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939342e32303234303830313232343831362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703870|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939352e32303234303830313233323031342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703871|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939362e32303234303830313233343830362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703872|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939372e32303234303830323030313234362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703873|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939382e32303234303830323030333631322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703874|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f3939392e32303234303830323030353832342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703875|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313030302e32303234303830323031323230312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703876|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313030312e32303234303830323031343634352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703877|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313030322e32303234303830323032313033352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703878|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313030332e32303234303830323032333333332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703879|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313030342e32303234303830323032353735352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703880|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138322e32303234303830363030353032382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703881|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138332e32303234303830363031313230372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703882|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138342e32303234303830363031333733332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703883|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138352e32303234303830363032303133352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703884|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138362e32303234303830363032323531312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703885|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138372e32303234303830363032343731342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703886|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138382e32303234303830363033303835322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703887|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313138392e32303234303830363033323834342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703888|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139302e32303234303830363033353035352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703889|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139312e32303234303830363034313433322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703890|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139322e32303234303830363034343030322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703891|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139332e32303234303830363035303632312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703892|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139342e32303234303830363035333133352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703893|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139352e32303234303830363035353534322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703894|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139362e32303234303830363036313831352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703895|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139372e32303234303830363036343135322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703896|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139382e32303234303830363037303432382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703897|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313139392e32303234303830363037323832342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703898|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230302e32303234303830363037353034362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703899|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230312e32303234303830363038313433322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703900|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230322e32303234303830363038333732332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703901|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230332e32303234303830363039303031362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703902|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230342e32303234303830363039323332392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703903|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230352e32303234303830363039343733392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703904|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230362e32303234303830363130313034362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703905|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230372e32303234303830363130333732332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703906|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230382e32303234303830363131303932342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703907|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313230392e32303234303830363131343231322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703908|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231302e32303234303830363132313033392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703909|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231312e32303234303830363132333732322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703910|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231322e32303234303830363133303535332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703911|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231332e32303234303830363133333435352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703912|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231342e32303234303830363134303434312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703913|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231352e32303234303830363134333634322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703914|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231362e32303234303830363135303931392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703915|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231372e32303234303830363135333931302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703916|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231382e32303234303830363136303931332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703917|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313231392e32303234303830363136333734332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703918|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232302e32303234303830363137303535322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703919|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232312e32303234303830363137333733372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703920|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232322e32303234303830363138303830362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703921|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232332e32303234303830363138343034362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703922|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232342e32303234303830363139313630382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703923|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232352e32303234303830363139343933392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703924|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232362e32303234303830363230313934362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703925|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232372e32303234303830363230353032372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703926|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232382e32303234303830363231313835322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703927|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313232392e32303234303830363231343930312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703928|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233302e32303234303830363232313631382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703929|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233312e32303234303830363232353130342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703930|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233322e32303234303830363233323131332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703931|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233332e32303234303830363233343635362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703932|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233342e32303234303830373030303932332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703933|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233352e32303234303830373030333035372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703934|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233362e32303234303830373030353334302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703935|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233372e32303234303830373031313530372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703936|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233382e32303234303830373031333731372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703937|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313233392e32303234303830373032303130352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703938|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234302e32303234303830373032323533332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703939|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234312e32303234303830373032353033352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703940|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234322e32303234303830373033313432392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703941|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234332e32303234303830373033333631332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703942|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234342e32303234303830373033353732352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703943|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234352e32303234303830373034323031322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703944|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234362e32303234303830373034343830392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703945|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234372e32303234303830373035313530332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703946|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234382e32303234303830373035333831362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703947|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313234392e32303234303830373035353930322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703948|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235302e32303234303830373036323333312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703949|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235312e32303234303830373036343732302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703950|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235322e32303234303830373037313332322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703951|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235332e32303234303830373037333834332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703952|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235342e32303234303830373038303531312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703953|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235352e32303234303830373038323833372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703954|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235362e32303234303830373038353133342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703955|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235372e32303234303830373039313430312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703956|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235382e32303234303830373039333830322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703957|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313235392e32303234303830373130303432312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703958|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236302e32303234303830373130333331322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703959|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236312e32303234303830373131303430352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703960|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236322e32303234303830373131333730322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703961|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236332e32303234303830373132303432302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703962|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236342e32303234303830373132333432392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703963|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236352e32303234303830373133303633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703964|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236362e32303234303830373133333734302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703965|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236372e32303234303830373134303832392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703966|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236382e32303234303830373134343035332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703967|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313236392e32303234303830373135303832352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703968|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237302e32303234303830373135333531302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703969|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237312e32303234303830373136303533322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703970|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237322e32303234303830373136343035332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703971|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237332e32303234303830373137313432342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703972|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237342e32303234303830373137343931372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703973|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237352e32303234303830373138323431352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703974|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237362e32303234303830373138353530312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703975|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237372e32303234303830373139323534312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703976|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237382e32303234303830373139353830392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703977|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313237392e32303234303830373230333330322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703978|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238302e32303234303830373231303333312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703979|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238312e32303234303830373231333535312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703980|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238322e32303234303830373232303333372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703981|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238332e32303234303830373232333233372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703982|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238342e32303234303830373233303530332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703983|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238352e32303234303830373233333431342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703984|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238362e32303234303830373233353732372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703985|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238372e32303234303830383030323431332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703986|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238382e32303234303830383030343931332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703987|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313238392e32303234303830383031313331302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703988|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239302e32303234303830383031333732312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703989|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239312e32303234303830383032303135342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703990|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239322e32303234303830383032323631322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703991|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239332e32303234303830383032353134372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703992|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239342e32303234303830383033313531372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703993|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239352e32303234303830383033343034342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703994|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239362e32303234303830383034303633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703995|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239372e32303234303830383034333133362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703996|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239382e32303234303830383034353735302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703997|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313239392e32303234303830383035323134302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703998|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330302e32303234303830383035343734342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.703999|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330312e32303234303830383036313330332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704000|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330322e32303234303830383036333835392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704001|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330332e32303234303830383037303435342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704002|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330342e32303234303830383037323931322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704003|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330352e32303234303830383037353531352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704004|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330362e32303234303830383038323233312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704005|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330372e32303234303830383038343735322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704006|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330382e32303234303830383039313230382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704007|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313330392e32303234303830383039333835302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704008|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331302e32303234303830383130303530382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704009|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331312e32303234303830383130333633322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704010|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331322e32303234303830383131303534362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704011|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331332e32303234303830383131333633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704012|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331342e32303234303830383132303635372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704013|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331352e32303234303830383132333330362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704014|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331362e32303234303830383133303330362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704015|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331372e32303234303830383133333630362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704016|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331382e32303234303830383134313232342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704017|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313331392e32303234303830383134343432302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704018|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332302e32303234303830383135313333302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704019|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332312e32303234303830383135343333302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704020|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332322e32303234303830383136313433322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704021|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332332e32303234303830383136343432392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704022|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332342e32303234303830383137313631372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704023|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332352e32303234303830383137343830362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704024|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332362e32303234303830383138323230342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704025|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332372e32303234303830383138353432362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704026|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332382e32303234303830383139323730302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704027|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313332392e32303234303830383139353730382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704028|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333302e32303234303830383230323734382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704029|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333312e32303234303830383230353831342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704030|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333322e32303234303830383231333330352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704031|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333332e32303234303830383232303732372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704032|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333342e32303234303830383232343033312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704033|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333352e32303234303830383233313234362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704034|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333362e32303234303830383233343334322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704035|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333372e32303234303830393030313233392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704036|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333382e32303234303830393030333830382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704037|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313333392e32303234303830393031303632302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704038|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334302e32303234303830393031323835352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704039|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334312e32303234303830393031353232382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704040|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334322e32303234303830393032313535372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704041|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334332e32303234303830393032333933392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704042|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334342e32303234303830393033303335372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704043|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334352e32303234303830393033323833362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704044|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334362e32303234303830393033353333372e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704045|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334372e32303234303830393034313632352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704046|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334382e32303234303830393034333930392e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704047|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313334392e32303234303830393035303335312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704048|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335302e32303234303830393035323933322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704049|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335312e32303234303830393035353432302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704050|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335322e32303234303830393036313734352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704051|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335332e32303234303830393036333935352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704052|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335342e32303234303830393037303133322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704053|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335352e32303234303830393037323535322e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704054|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335362e32303234303830393037353032312e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704055|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335372e32303234303830393038313532332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704056|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335382e32303234303830393038333932302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704057|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313335392e32303234303830393039303633332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704058|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336302e32303234303830393039323931302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704059|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336312e32303234303830393039353232342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704060|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336322e32303234303830393130313633332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704061|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336332e32303234303830393130343730382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704062|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336342e32303234303830393131323132382e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704063|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336352e32303234303830393131343834302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704064|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336362e32303234303830393132313635342e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704065|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336372e32303234303830393132343634352e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704066|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336382e32303234303830393133313533302e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704067|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313336392e32303234303830393133343633362e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.5.1.1.704068|4x|2f626f6f74666c6173682f74726163656c6f67732f7574665f52302d302e353333365f313337302e32303234303830393134313933332e62696e2e677a +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.2|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.11|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.12|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.13|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.14|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.15|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.16|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.17|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.18|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.19|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.20|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.21|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130817|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130818|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130819|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130820|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130821|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130822|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130823|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130824|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130825|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130826|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130827|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130828|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130829|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130830|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130831|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130832|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130833|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130834|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130835|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130836|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130837|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130838|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130839|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130840|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130841|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130842|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130843|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130844|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130845|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130846|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130847|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130848|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130849|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130850|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.130851|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.237105|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.245281|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.253457|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.261633|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.269809|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.277985|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.286161|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.294338|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.294339|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.294340|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621377|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621378|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621379|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621380|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621381|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.621382|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.629553|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.654081|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.654082|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.662257|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.686785|2|4 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703137|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703138|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703139|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703140|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703141|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703142|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703143|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703144|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703145|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703146|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703147|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703148|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703149|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703150|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703151|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703152|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703153|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703154|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703155|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703156|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703157|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703158|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703159|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703160|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703161|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703162|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703163|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703164|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703165|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703166|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703167|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703168|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703169|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703170|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703171|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703172|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703173|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703174|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703175|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703176|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703177|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703178|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703179|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703180|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703181|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703182|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703183|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703184|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703185|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703186|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703187|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703188|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703189|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703190|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703191|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703192|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703193|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703194|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703195|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703196|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703197|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703198|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703199|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703200|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703201|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703202|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703203|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703204|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703205|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703206|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703207|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703208|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703209|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703210|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703211|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703212|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703213|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703214|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703215|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703216|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703217|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703218|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703219|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703220|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703221|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703222|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703223|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703224|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703225|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703226|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703227|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703228|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703229|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703230|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703231|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703232|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703233|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703234|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703235|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703236|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703237|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703238|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703239|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703240|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703241|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703242|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703243|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703244|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703245|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703246|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703247|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703248|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703249|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703250|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703251|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703252|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703253|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703254|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703255|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703256|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703257|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703258|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703259|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703260|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703261|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703262|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703263|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703264|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703265|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703266|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703267|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703268|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703269|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703270|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703271|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703272|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703273|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703274|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703275|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703276|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703277|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703278|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703279|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703280|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703281|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703282|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703283|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703284|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703285|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703286|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703287|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703288|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703289|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703290|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703291|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703292|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703293|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703294|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703295|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703296|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703297|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703298|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703299|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703300|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703301|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703302|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703303|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703304|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703305|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703306|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703307|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703308|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703309|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703310|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703311|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703312|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703313|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703314|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703315|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703316|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703317|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703318|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703319|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703320|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703321|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703322|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703323|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703324|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703325|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703326|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703327|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703328|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703329|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703330|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703331|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703332|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703333|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703334|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703335|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703336|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703337|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703338|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703339|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703340|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703341|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703342|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703343|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703344|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703345|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703346|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703347|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703348|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703349|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703350|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703351|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703352|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703353|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703354|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703355|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703356|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703357|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703358|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703359|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703360|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703361|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703362|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703363|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703364|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703365|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703366|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703367|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703368|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703369|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703370|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703371|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703372|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703373|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703374|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703375|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703376|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703377|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703378|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703379|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703380|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703381|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703382|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703383|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703384|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703385|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703386|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703387|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703388|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703389|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703390|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703391|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703392|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703393|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703394|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703395|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703396|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703397|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703398|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703399|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703400|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703401|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703402|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703403|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703404|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703405|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703406|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703407|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703408|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703409|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703410|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703411|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703412|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703413|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703414|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703415|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703416|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703417|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703418|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703419|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703420|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703421|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703422|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703423|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703424|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703425|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703426|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703427|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703428|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703429|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703430|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703431|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703432|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703433|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703434|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703435|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703436|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703437|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703438|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703439|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703440|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703441|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703442|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703443|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703444|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703445|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703446|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703447|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703448|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703449|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703450|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703451|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703452|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703453|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703454|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703455|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703456|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703457|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703458|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703459|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703460|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703461|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703462|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703463|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703464|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703465|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703466|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703467|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703468|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703469|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703470|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703471|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703472|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703473|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703474|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703475|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703476|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703477|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703478|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703479|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703480|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703481|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703482|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703483|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703484|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703485|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703486|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703487|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703488|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703489|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703490|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703491|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703492|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703493|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703494|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703495|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703496|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703497|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703498|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703499|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703500|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703501|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703502|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703503|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703504|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703505|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703506|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703507|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703508|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703509|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703510|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703511|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703512|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703513|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703514|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703515|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703516|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703517|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703518|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703519|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703520|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703521|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703522|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703523|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703524|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703525|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703526|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703527|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703528|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703529|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703530|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703531|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703532|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703533|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703534|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703535|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703536|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703537|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703538|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703539|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703540|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703541|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703542|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703543|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703544|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703545|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703546|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703547|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703548|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703549|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703550|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703551|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703552|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703553|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703554|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703555|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703556|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703557|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703558|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703559|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703560|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703561|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703562|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703563|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703564|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703565|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703566|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703567|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703568|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703569|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703570|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703571|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703572|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703573|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703574|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703575|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703576|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703577|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703578|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703579|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703580|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703581|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703582|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703583|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703584|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703585|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703586|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703587|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703588|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703589|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703590|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703591|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703592|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703593|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703594|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703595|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703596|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703597|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703598|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703599|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703600|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703601|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703602|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703603|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703604|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703605|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703606|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703607|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703608|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703609|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703610|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703611|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703612|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703613|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703614|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703615|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703616|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703617|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703618|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703619|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703620|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703621|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703622|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703623|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703624|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703625|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703626|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703627|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703628|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703629|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703630|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703631|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703632|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703633|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703634|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703635|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703636|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703637|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703638|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703639|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703640|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703641|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703642|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703643|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703644|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703645|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703646|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703647|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703648|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703649|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703650|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703651|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703652|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703653|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703654|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703655|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703656|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703657|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703658|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703659|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703660|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703661|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703662|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703663|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703664|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703665|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703666|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703667|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703668|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703669|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703670|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703671|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703672|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703673|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703674|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703675|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703676|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703677|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703678|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703679|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703680|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703681|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703682|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703683|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703684|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703685|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703686|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703687|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703688|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703689|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703690|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703691|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703692|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703693|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703694|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703695|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703696|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703697|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703698|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703699|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703700|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703701|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703702|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703703|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703704|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703705|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703706|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703707|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703708|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703709|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703710|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703711|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703712|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703713|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703714|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703715|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703716|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703717|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703718|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703719|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703720|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703721|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703722|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703723|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703724|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703725|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703726|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703727|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703728|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703729|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703730|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703731|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703732|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703733|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703734|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703735|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703736|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703737|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703738|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703739|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703740|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703741|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703742|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703743|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703744|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703745|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703746|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703747|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703748|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703749|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703750|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703751|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703752|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703753|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703754|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703755|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703756|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703757|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703758|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703759|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703760|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703761|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703762|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703763|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703764|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703765|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703766|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703767|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703768|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703769|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703770|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703771|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703772|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703773|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703774|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703775|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703776|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703777|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703778|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703779|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703780|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703781|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703782|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703783|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703784|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703785|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703786|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703787|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703788|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703789|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703790|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703791|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703792|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703793|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703794|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703795|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703796|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703797|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703798|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703799|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703800|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703801|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703802|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703803|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703804|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703805|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703806|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703807|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703808|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703809|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703810|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703811|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703812|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703813|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703814|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703815|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703816|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703817|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703818|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703819|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703820|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703821|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703822|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703823|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703824|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703825|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703826|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703827|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703828|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703829|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703830|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703831|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703832|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703833|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703834|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703835|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703836|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703837|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703838|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703839|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703840|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703841|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703842|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703843|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703844|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703845|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703846|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703847|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703848|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703849|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703850|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703851|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703852|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703853|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703854|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703855|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703856|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703857|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703858|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703859|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703860|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703861|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703862|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703863|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703864|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703865|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703866|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703867|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703868|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703869|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703870|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703871|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703872|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703873|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703874|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703875|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703876|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703877|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703878|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703879|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703880|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703881|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703882|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703883|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703884|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703885|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703886|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703887|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703888|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703889|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703890|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703891|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703892|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703893|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703894|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703895|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703896|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703897|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703898|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703899|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703900|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703901|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703902|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703903|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703904|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703905|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703906|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703907|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703908|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703909|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703910|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703911|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703912|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703913|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703914|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703915|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703916|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703917|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703918|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703919|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703920|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703921|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703922|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703923|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703924|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703925|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703926|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703927|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703928|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703929|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703930|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703931|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703932|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703933|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703934|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703935|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703936|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703937|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703938|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703939|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703940|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703941|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703942|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703943|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703944|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703945|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703946|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703947|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703948|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703949|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703950|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703951|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703952|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703953|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703954|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703955|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703956|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703957|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703958|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703959|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703960|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703961|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703962|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703963|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703964|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703965|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703966|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703967|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703968|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703969|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703970|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703971|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703972|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703973|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703974|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703975|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703976|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703977|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703978|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703979|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703980|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703981|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703982|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703983|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703984|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703985|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703986|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703987|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703988|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703989|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703990|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703991|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703992|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703993|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703994|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703995|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703996|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703997|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703998|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.703999|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704000|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704001|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704002|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704003|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704004|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704005|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704006|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704007|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704008|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704009|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704010|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704011|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704012|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704013|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704014|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704015|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704016|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704017|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704018|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704019|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704020|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704021|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704022|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704023|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704024|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704025|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704026|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704027|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704028|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704029|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704030|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704031|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704032|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704033|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704034|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704035|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704036|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704037|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704038|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704039|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704040|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704041|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704042|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704043|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704044|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704045|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704046|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704047|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704048|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704049|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704050|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704051|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704052|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704053|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704054|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704055|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704056|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704057|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704058|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704059|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704060|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704061|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704062|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704063|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704064|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704065|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704066|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704067|2|1 +1.3.6.1.4.1.9.9.10.1.1.4.2.1.1.6.1.1.704068|2|1 +1.3.6.1.4.1.9.9.10.1.4.1.0|2|2 +1.3.6.1.4.1.9.9.10.1.4.2.0|2|2 +1.3.6.1.4.1.9.9.10.1.4.3.0|2|2 +1.3.6.1.4.1.9.9.13.1.1.0|2|14 +1.3.6.1.4.1.9.9.13.1.3.1.2.2001|4x|54656d703a2042524454454d50312052302f30 +1.3.6.1.4.1.9.9.13.1.3.1.2.2002|4x|54656d703a2042524454454d50322052302f31 +1.3.6.1.4.1.9.9.13.1.3.1.2.2003|4x|54656d703a2043505520446965202052302f32 +1.3.6.1.4.1.9.9.13.1.3.1.3.2001|66|39 +1.3.6.1.4.1.9.9.13.1.3.1.3.2002|66|37 +1.3.6.1.4.1.9.9.13.1.3.1.3.2003|66|54 +1.3.6.1.4.1.9.9.13.1.3.1.4.2001|2|60 +1.3.6.1.4.1.9.9.13.1.3.1.4.2002|2|64 +1.3.6.1.4.1.9.9.13.1.3.1.4.2003|2|104 +1.3.6.1.4.1.9.9.13.1.3.1.5.2001|2|454344205 +1.3.6.1.4.1.9.9.13.1.3.1.5.2002|2|454344205 +1.3.6.1.4.1.9.9.13.1.3.1.5.2003|2|454344205 +1.3.6.1.4.1.9.9.13.1.3.1.6.2001|2|1 +1.3.6.1.4.1.9.9.13.1.3.1.6.2002|2|1 +1.3.6.1.4.1.9.9.13.1.3.1.6.2003|2|1 +1.3.6.1.4.1.9.9.13.1.3.1.7.2001|2|39 +1.3.6.1.4.1.9.9.13.1.3.1.7.2002|2|37 +1.3.6.1.4.1.9.9.13.1.3.1.7.2003|2|54 +1.3.6.1.4.1.9.9.13.1.4.1.2.24|4x|4368617373697320312046616e2054726179 +1.3.6.1.4.1.9.9.13.1.4.1.2.35|4x|4368617373697320312046616e20312f30 +1.3.6.1.4.1.9.9.13.1.4.1.2.36|4x|4368617373697320312046616e20312f31 +1.3.6.1.4.1.9.9.13.1.4.1.3.24|2|1 +1.3.6.1.4.1.9.9.13.1.4.1.3.35|2|1 +1.3.6.1.4.1.9.9.13.1.4.1.3.36|2|1 +1.3.6.1.4.1.9.9.13.1.5.1.2.4|4x|43686173736973203120506f77657220537570706c79204d6f64756c652030 +1.3.6.1.4.1.9.9.13.1.5.1.2.14|4x|43686173736973203120506f77657220537570706c792030 +1.3.6.1.4.1.9.9.13.1.5.1.3.4|2|1 +1.3.6.1.4.1.9.9.13.1.5.1.3.14|2|1 +1.3.6.1.4.1.9.9.13.1.5.1.4.4|2|3 +1.3.6.1.4.1.9.9.13.1.5.1.4.14|2|3 +1.3.6.1.4.1.9.9.13.2.1.0|2|2 +1.3.6.1.4.1.9.9.13.2.2.0|2|2 +1.3.6.1.4.1.9.9.13.2.3.0|2|2 +1.3.6.1.4.1.9.9.13.2.4.0|2|2 +1.3.6.1.4.1.9.9.13.2.5.0|2|2 +1.3.6.1.4.1.9.9.13.2.6.0|2|2 +1.3.6.1.4.1.9.9.19.1.1.0|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.2|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.3|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.4|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.5|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.6|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.2.7|2|1 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.1|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.2|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.3|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.4|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.5|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.6|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.3.7|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.1|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.2|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.3|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.4|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.5|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.6|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.4.7|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.1|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.2|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.3|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.4|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.5|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.6|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.5.7|2|0 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.1|4x|54776f4769676162697445746865726e6574302f302f30 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.2|4x|54776f4769676162697445746865726e6574302f302f31 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.3|4x|54776f4769676162697445746865726e6574302f302f32 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.4|4x|54776f4769676162697445746865726e6574302f302f33 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.5|4x|54656e4769676162697445746865726e6574302f312f30 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.6|4x|54656e4769676162697445746865726e6574302f312f31 +1.3.6.1.4.1.9.9.23.1.1.1.1.6.7|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.23.1.2.1.1.3.5.1|2|1 +1.3.6.1.4.1.9.9.23.1.2.1.1.3.6.2|2|1 +1.3.6.1.4.1.9.9.23.1.2.1.1.4.5.1|4x|0ab7080b +1.3.6.1.4.1.9.9.23.1.2.1.1.4.6.2|4x|0ab7080b +1.3.6.1.4.1.9.9.23.1.2.1.1.5.5.1|4x|436973636f20494f5320536f667477617265205b47696272616c7461725d2c20436174616c797374204c332053776974636820536f6674776172652028434154334b5f4341412d554e4956455253414c4b392d4d292c2056657273696f6e2031362e31322e392c2052454c4541534520534f46545741524520286663322920546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f727420436f707972696768742028632920313938362d3230323320627920436973636f2053797374656d732c20496e632e20436f6d70696c6564204d6f6e2032302d4d61722d32332030333a313420 +1.3.6.1.4.1.9.9.23.1.2.1.1.5.6.2|4x|436973636f20494f5320536f667477617265205b47696272616c7461725d2c20436174616c797374204c332053776974636820536f6674776172652028434154334b5f4341412d554e4956455253414c4b392d4d292c2056657273696f6e2031362e31322e392c2052454c4541534520534f46545741524520286663322920546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f727420436f707972696768742028632920313938362d3230323320627920436973636f2053797374656d732c20496e632e20436f6d70696c6564204d6f6e2032302d4d61722d32332030333a313420 +1.3.6.1.4.1.9.9.23.1.2.1.1.6.5.1|4x|4d41522d434f522d53572d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.23.1.2.1.1.6.6.2|4x|4d41522d434f522d53572d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.23.1.2.1.1.7.5.1|4x|54656e4769676162697445746865726e6574322f302f39 +1.3.6.1.4.1.9.9.23.1.2.1.1.7.6.2|4x|54656e4769676162697445746865726e6574312f302f39 +1.3.6.1.4.1.9.9.23.1.2.1.1.8.5.1|4x|636973636f2057532d43333835302d31325853 +1.3.6.1.4.1.9.9.23.1.2.1.1.8.6.2|4x|636973636f2057532d43333835302d31325853 +1.3.6.1.4.1.9.9.23.1.2.1.1.9.5.1|4x|00000029 +1.3.6.1.4.1.9.9.23.1.2.1.1.9.6.2|4x|00000029 +1.3.6.1.4.1.9.9.23.1.2.1.1.10.5.1|4| +1.3.6.1.4.1.9.9.23.1.2.1.1.10.6.2|4| +1.3.6.1.4.1.9.9.23.1.2.1.1.11.5.1|2|52 +1.3.6.1.4.1.9.9.23.1.2.1.1.11.6.2|2|52 +1.3.6.1.4.1.9.9.23.1.2.1.1.12.5.1|2|3 +1.3.6.1.4.1.9.9.23.1.2.1.1.12.6.2|2|3 +1.3.6.1.4.1.9.9.23.1.2.1.1.24.5.1|67|248565357 +1.3.6.1.4.1.9.9.23.1.2.1.1.24.6.2|67|248554279 +1.3.6.1.4.1.9.9.23.1.3.1.0|2|1 +1.3.6.1.4.1.9.9.23.1.3.2.0|2|60 +1.3.6.1.4.1.9.9.23.1.3.3.0|2|180 +1.3.6.1.4.1.9.9.23.1.3.4.0|4x|4d41522d574c432d43393830302e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.23.1.3.5.0|67|4543430 +1.3.6.1.4.1.9.9.25.1.1.1.2.1|4x|43575f424547494e242d67732d756e6976657273616c6b395f776c632d6d24 +1.3.6.1.4.1.9.9.25.1.1.1.2.2|4x|43575f494d4147452443393830305f494f5358452d4b3924 +1.3.6.1.4.1.9.9.25.1.1.1.2.3|4x|43575f46414d494c592443393830305f494f53584524 +1.3.6.1.4.1.9.9.25.1.1.1.2.4|4x|43575f4645415455524524554e4b4e4f574e24 +1.3.6.1.4.1.9.9.25.1.1.1.2.5|4x|43575f56455253494f4e2431372e392e3424 +1.3.6.1.4.1.9.9.25.1.1.1.2.6|4x|43575f4d454449412452414d24 +1.3.6.1.4.1.9.9.25.1.1.1.2.7|4x|43575f535953444553435224436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20433938303020536f667477617265202843393830305f494f5358452d4b39292c2056657273696f6e2031372e392e342c2052454c4541534520534f46545741524520286663352920546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f727420436f707972696768742028632920313938362d3230323320627920436973636f2053797374656d732c20496e632e20436f6d70696c6564205765642032362d4a756c2d32332031303a3035206279206d6370726524 +1.3.6.1.4.1.9.9.25.1.1.1.2.8|4x|43575f454e44242d67732d756e6976657273616c6b395f776c632d6d24 +1.3.6.1.4.1.9.9.27.1.1.1.0|2|100 +1.3.6.1.4.1.9.9.27.1.1.2.0|2|15 +1.3.6.1.4.1.9.9.30.1.1.1.0|64x|00000000 +1.3.6.1.4.1.9.9.35.1.1.1.0|64x|00000000 +1.3.6.1.4.1.9.9.35.1.1.2.0|2|160 +1.3.6.1.4.1.9.9.35.1.1.3.0|2|0 +1.3.6.1.4.1.9.9.35.1.1.4.0|2|3 +1.3.6.1.4.1.9.9.37.1.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.2|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.3|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.4|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.5|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.6|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.7|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.10|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.11|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.1.12|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.2.1|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.2|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.3|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.4|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.5|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.6|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.7|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.10|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.11|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.2.12|2|0 +1.3.6.1.4.1.9.9.37.1.1.1.3.1|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.2|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.3|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.4|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.5|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.6|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.7|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.10|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.11|2|1 +1.3.6.1.4.1.9.9.37.1.1.1.3.12|2|1 +1.3.6.1.4.1.9.9.37.1.2.1.2.1.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.2.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.3.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.4.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.5.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.6.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.7.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.10.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.11.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.2.12.2|66|0 +1.3.6.1.4.1.9.9.37.1.2.1.3.1.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.2.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.3.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.4.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.5.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.6.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.7.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.10.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.11.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.3.12.2|2|40 +1.3.6.1.4.1.9.9.37.1.2.1.4.1.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.2.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.3.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.4.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.5.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.6.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.7.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.10.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.11.2|65|0 +1.3.6.1.4.1.9.9.37.1.2.1.4.12.2|65|0 +1.3.6.1.4.1.9.9.41.1.1.1.0|65|0 +1.3.6.1.4.1.9.9.41.1.1.2.0|2|2 +1.3.6.1.4.1.9.9.41.1.1.3.0|2|5 +1.3.6.1.4.1.9.9.41.1.1.4.0|65|163639 +1.3.6.1.4.1.9.9.41.1.1.5.0|65|0 +1.3.6.1.4.1.9.9.41.1.2.1.0|2|1 +1.3.6.1.4.1.9.9.41.1.2.2.0|65|699 +1.3.6.1.4.1.9.9.41.1.2.3.1.2.700|4|SISF +1.3.6.1.4.1.9.9.41.1.2.3.1.3.700|2|5 +1.3.6.1.4.1.9.9.41.1.2.3.1.4.700|4x|4558434553535f4152505f4143544956495459 +1.3.6.1.4.1.9.9.41.1.2.3.1.5.700|4x|4368617373697320312052302f303a20776e63643a204578636573736976652041525020616374697669747920646574656374656420666f722074686520636c69656e7420396561322e643335372e376536392e20636c69656e742069732062726f7567687420646f776e20616e6420616464656420746f20746865206578636c7573696f6e206c697374 +1.3.6.1.4.1.9.9.41.1.2.3.1.6.700|67|435038438 +1.3.6.1.4.1.9.9.42.1.1.1.0|4x|322e322e3020526f756e6420547269702054696d65204d4942 +1.3.6.1.4.1.9.9.42.1.1.2.0|2|16384 +1.3.6.1.4.1.9.9.42.1.1.3.0|67|0 +1.3.6.1.4.1.9.9.42.1.1.4.0|2|224853 +1.3.6.1.4.1.9.9.42.1.1.5.0|2|1 +1.3.6.1.4.1.9.9.42.1.1.6.0|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.0|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.1|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.2|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.3|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.4|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.5|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.6|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.7|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.8|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.9|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.10|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.11|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.12|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.13|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.14|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.15|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.16|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.17|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.18|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.19|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.20|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.21|2|1 +1.3.6.1.4.1.9.9.42.1.1.7.1.2.22|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.0|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.1|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.2|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.3|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.4|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.5|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.6|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.7|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.8|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.9|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.10|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.11|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.12|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.13|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.14|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.15|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.16|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.17|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.18|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.19|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.20|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.21|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.22|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.23|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.24|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.25|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.26|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.27|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.28|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.29|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.30|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.31|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.32|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.33|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.34|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.35|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.36|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.37|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.38|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.39|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.40|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.41|2|1 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.42|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.43|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.44|2|2 +1.3.6.1.4.1.9.9.42.1.1.8.1.2.45|2|1 +1.3.6.1.4.1.9.9.42.1.1.10.0|2|222783 +1.3.6.1.4.1.9.9.42.1.1.11.0|2|306999467 +1.3.6.1.4.1.9.9.42.1.1.12.0|4| +1.3.6.1.4.1.9.9.42.1.1.13.0|2|2 +1.3.6.1.4.1.9.9.42.1.1.15.0|2|0 +1.3.6.1.4.1.9.9.43.1.1.1.0|67|450784598 +1.3.6.1.4.1.9.9.43.1.1.2.0|67|425323053 +1.3.6.1.4.1.9.9.43.1.1.3.0|67|400046998 +1.3.6.1.4.1.9.9.43.1.1.4.0|2|10 +1.3.6.1.4.1.9.9.43.1.1.5.0|65|377 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.378|67|425282789 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.379|67|425283472 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.380|67|425283808 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.381|67|425283842 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.382|67|425309394 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.383|67|425309735 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.384|67|425309770 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.385|67|425322669 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.386|67|425323044 +1.3.6.1.4.1.9.9.43.1.1.6.1.2.387|67|425323053 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.378|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.379|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.380|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.381|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.382|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.383|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.384|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.385|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.386|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.3.387|2|1 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.378|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.379|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.380|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.381|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.382|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.383|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.384|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.385|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.386|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.4.387|2|3 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.378|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.379|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.380|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.381|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.382|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.383|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.384|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.385|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.386|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.5.387|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.378|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.379|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.380|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.381|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.382|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.383|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.384|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.385|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.386|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.6.387|2|5 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.378|2|4 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.379|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.380|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.381|2|4 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.382|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.383|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.384|2|4 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.385|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.386|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.7.387|2|2 +1.3.6.1.4.1.9.9.43.1.1.6.1.8.378|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.379|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.380|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.381|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.382|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.383|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.384|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.385|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.386|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.8.387|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.378|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.379|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.380|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.381|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.382|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.383|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.384|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.385|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.386|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.9.387|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.10.378|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.379|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.380|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.381|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.382|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.383|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.384|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.385|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.386|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.10.387|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.11.378|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.379|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.380|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.381|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.382|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.383|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.384|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.385|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.386|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.11.387|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.12.378|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.379|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.380|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.381|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.382|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.383|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.384|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.385|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.386|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.12.387|64x|00000000 +1.3.6.1.4.1.9.9.43.1.1.6.1.13.378|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.379|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.380|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.381|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.382|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.383|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.384|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.385|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.386|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.13.387|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.378|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.379|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.380|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.381|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.382|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.383|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.384|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.385|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.386|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.14.387|4| +1.3.6.1.4.1.9.9.43.1.1.6.1.15.378|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.379|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.380|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.381|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.382|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.383|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.384|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.385|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.386|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.15.387|65|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.378|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.379|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.380|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.381|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.382|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.383|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.384|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.385|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.386|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.16.387|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.378|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.379|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.380|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.381|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.382|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.383|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.384|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.385|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.386|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.17.387|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.378|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.379|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.380|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.381|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.382|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.383|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.384|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.385|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.386|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.18.387|2|0 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.378|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.379|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.380|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.381|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.382|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.383|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.384|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.385|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.386|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.1.6.1.19.387|4x|302e302e302e30 +1.3.6.1.4.1.9.9.43.1.2.1.0|66|100 +1.3.6.1.4.1.9.9.43.1.2.2.0|66|0 +1.3.6.1.4.1.9.9.43.1.2.3.0|66|4294967295 +1.3.6.1.4.1.9.9.43.1.3.1.0|2|2 +1.3.6.1.4.1.9.9.43.1.4.1.0|70|1438 +1.3.6.1.4.1.9.9.43.1.4.2.0|4x|07e8090205250c08 +1.3.6.1.4.1.9.9.43.1.4.3.0|4x|66756a697473752d726f +1.3.6.1.4.1.9.9.43.1.4.4.0|2|2 +1.3.6.1.4.1.9.9.46.1.1.1.0|2|4 +1.3.6.1.4.1.9.9.46.1.1.2.0|2|1005 +1.3.6.1.4.1.9.9.46.1.1.3.0|2|2 +1.3.6.1.4.1.9.9.46.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.46.1.1.5.0|2|2 +1.3.6.1.4.1.9.9.46.1.2.1.1.2.1|4| +1.3.6.1.4.1.9.9.46.1.2.1.1.3.1|2|3 +1.3.6.1.4.1.9.9.46.1.2.1.1.4.1|66|0 +1.3.6.1.4.1.9.9.46.1.2.1.1.5.1|64x|0ab73464 +1.3.6.1.4.1.9.9.46.1.2.1.1.6.1|4x|07d0000000000000 +1.3.6.1.4.1.9.9.46.1.2.1.1.7.1|2|1 +1.3.6.1.4.1.9.9.46.1.2.1.1.8.1|64x|00000000 +1.3.6.1.4.1.9.9.46.1.2.1.1.9.1|4| +1.3.6.1.4.1.9.9.46.1.2.1.1.10.1|2|2 +1.3.6.1.4.1.9.9.46.1.2.1.1.11.1|2|1 +1.3.6.1.4.1.9.9.46.1.2.1.1.12.1|2|2 +1.3.6.1.4.1.9.9.46.1.2.1.1.13.1|4| +1.3.6.1.4.1.9.9.46.1.2.1.1.14.1|2|2 +1.3.6.1.4.1.9.9.46.1.2.1.1.15.1|4|Vl52 +1.3.6.1.4.1.9.9.46.1.2.1.1.16.1|4x|626f6f74666c6173683a766c616e2e646174 +1.3.6.1.4.1.9.9.46.1.2.1.1.17.1|2|0 +1.3.6.1.4.1.9.9.46.1.2.1.1.18.1|4| +1.3.6.1.4.1.9.9.46.1.2.1.1.19.1|4| +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.5|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.52|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.72|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.176|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.177|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.178|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.179|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.180|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.181|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.182|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.183|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.184|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.186|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.187|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.191|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.193|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.200|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.205|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1002|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1003|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1004|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.2.1.1005|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.5|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.52|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.72|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.176|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.177|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.178|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.179|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.180|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.181|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.182|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.183|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.184|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.186|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.187|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.191|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.193|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.200|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.205|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1002|2|2 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1003|2|3 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1004|2|4 +1.3.6.1.4.1.9.9.46.1.3.1.1.3.1.1005|2|5 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1|4|default +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.5|4x|4953455f4e41495f57494649 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.52|4x|4953455f4e4554574f524b5f4d474d54 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.72|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.176|4x|4953455f4d41525f4852 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.177|4x|4953455f4d41525f522644 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.178|4x|4953455f4d41525f537570436861696e +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.179|4x|4953455f4d41525f54514d +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.180|4x|4953455f4d41525f56616c436861696e +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.181|4x|4953455f4d41525f435047 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.182|4x|4953455f4d41525f46696e616e6365 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.183|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.184|4x|4953455f4247435f4954 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.186|4x|4953455f436c696e69635573657273 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.187|4x|4d41525f5341505f55534552 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.191|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.193|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.200|4x|4953455f574946495f4755455354 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.205|4x|4953455f545045 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1002|4x|666464692d64656661756c74 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1003|4x|746f6b656e2d72696e672d64656661756c74 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1004|4x|666464696e65742d64656661756c74 +1.3.6.1.4.1.9.9.46.1.3.1.1.4.1.1005|4x|74726e65742d64656661756c74 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.5|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.52|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.72|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.176|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.177|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.178|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.179|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.180|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.181|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.182|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.183|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.184|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.186|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.187|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.191|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.193|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.200|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.205|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1002|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1003|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1004|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.5.1.1005|2|1500 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1|4x|000186a1 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.5|4x|000186a5 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.52|4x|000186d4 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.72|4x|000186e8 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.176|4x|00018750 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.177|4x|00018751 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.178|4x|00018752 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.179|4x|00018753 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.180|4x|00018754 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.181|4x|00018755 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.182|4x|00018756 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.183|4x|00018757 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.184|4x|00018758 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.186|4x|0001875a +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.187|4x|0001875b +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.191|4x|0001875f +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.193|4x|00018761 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.200|4x|00018768 +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.205|4x|0001876d +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1002|4x|00018a8a +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1003|4x|00018a8b +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1004|4x|00018a8c +1.3.6.1.4.1.9.9.46.1.3.1.1.6.1.1005|4x|00018a8d +1.3.6.1.4.1.9.9.46.1.3.1.1.7.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.8.1.1004|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.8.1.1005|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.9.1.1004|2|1 +1.3.6.1.4.1.9.9.46.1.3.1.1.9.1.1005|2|2 +1.3.6.1.4.1.9.9.46.1.3.1.1.10.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.5|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.52|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.72|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.176|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.177|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.178|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.179|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.180|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.181|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.182|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.183|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.184|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.186|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.187|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.191|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.193|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.200|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.205|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1002|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1004|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.11.1.1005|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.5|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.52|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.72|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.176|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.177|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.178|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.179|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.180|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.181|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.182|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.183|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.184|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.186|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.187|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.191|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.193|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.200|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.205|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1002|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1004|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.12.1.1005|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.13.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.5|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.52|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.72|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.176|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.177|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.178|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.179|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.180|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.181|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.182|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.183|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.184|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.186|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.187|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.191|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.193|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.200|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.205|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1002|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1003|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1004|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.17.1.1005|4x|80 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.5|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.52|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.72|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.176|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.177|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.178|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.179|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.180|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.181|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.182|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.183|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.184|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.186|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.187|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.191|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.193|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.200|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.205|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1002|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1003|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1004|2|0 +1.3.6.1.4.1.9.9.46.1.3.1.1.18.1.1005|2|0 +1.3.6.1.4.1.9.9.46.1.3.2.1.0|2|1 +1.3.6.1.4.1.9.9.46.1.4.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.46.1.4.1.1.2.1|2|2 +1.3.6.1.4.1.9.9.46.1.4.1.1.3.1|4| +1.3.6.1.4.1.9.9.46.1.4.1.1.4.1|66|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.1.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.2.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.3.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.4.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.5.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.6.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.7.1|65|0 +1.3.6.1.4.1.9.9.46.1.5.1.1.8.1|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.2|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.3|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.4|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.5|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.6|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.2.12|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.1|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.2|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.3|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.4|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.5|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.6|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.3.12|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.4.1|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.4.2|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.4.3|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.4.5|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.4.6|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.4.12|4x|7fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.5.1|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.2|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.3|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.4|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.5|2|52 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.6|2|52 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.12|2|52 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.1|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.2|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.3|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.4|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.5|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.6|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.6.12|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.1|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.2|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.3|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.4|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.5|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.6|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.7.12|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.1|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.2|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.3|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.4|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.5|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.6|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.8.12|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.1|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.2|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.3|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.4|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.5|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.6|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.9.12|65|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.10.1|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.2|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.3|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.4|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.5|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.6|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.10.12|4x|3fffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.11.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.11.12|4x|44000000000008000080000000000000 +1.3.6.1.4.1.9.9.46.1.6.1.1.12.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.12.12|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.1|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.2|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.3|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.4|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.5|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.6|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.13.12|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.1|2|2 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.2|2|2 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.3|2|2 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.4|2|2 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.5|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.6|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.14.12|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.1|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.2|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.3|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.4|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.5|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.6|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.15.12|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.1|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.2|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.3|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.4|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.5|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.6|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.12|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.17.1|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.17.2|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.17.3|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.17.4|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.1|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.2|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.3|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.5|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.6|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.18.12|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.19.4|4x|ffffffffffffffffffffffffffffffff +1.3.6.1.4.1.9.9.46.1.6.1.1.20.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.20.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.21.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.22.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.23.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.24.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.25.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.26.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.27.12|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.1|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.2|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.3|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.4|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.5|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.6|4| +1.3.6.1.4.1.9.9.46.1.6.1.1.28.12|4| +1.3.6.1.4.1.9.9.46.1.6.2.0|2|0 +1.3.6.1.4.1.9.9.46.1.6.3.0|2|2 +1.3.6.1.4.1.9.9.46.1.10.1.0|66|23 +1.3.6.1.4.1.9.9.46.1.10.2.0|66|0 +1.3.6.1.4.1.9.9.46.1.10.3.0|66|0 +1.3.6.1.4.1.9.9.46.1.10.4.0|66|4071 +1.3.6.1.4.1.9.9.48.1.1.1.2.1|4|Processor +1.3.6.1.4.1.9.9.48.1.1.1.2.11|4x|726573657276652050726f636573736f72 +1.3.6.1.4.1.9.9.48.1.1.1.3.1|2|0 +1.3.6.1.4.1.9.9.48.1.1.1.3.11|2|0 +1.3.6.1.4.1.9.9.48.1.1.1.4.1|2|1 +1.3.6.1.4.1.9.9.48.1.1.1.4.11|2|1 +1.3.6.1.4.1.9.9.48.1.1.1.5.1|66|454492856 +1.3.6.1.4.1.9.9.48.1.1.1.5.11|66|88 +1.3.6.1.4.1.9.9.48.1.1.1.6.1|66|1219520548 +1.3.6.1.4.1.9.9.48.1.1.1.6.11|66|102316 +1.3.6.1.4.1.9.9.48.1.1.1.7.1|66|1100603640 +1.3.6.1.4.1.9.9.48.1.1.1.7.11|66|102312 +1.3.6.1.4.1.9.9.49.1.5.1.0|64x|00000000 +1.3.6.1.4.1.9.9.61.1.1.1.1.4|2|0 +1.3.6.1.4.1.9.9.61.1.1.1.1.14|2|0 +1.3.6.1.4.1.9.9.63.1.1.1.0|2|2 +1.3.6.1.4.1.9.9.63.1.1.2.0|2|2 +1.3.6.1.4.1.9.9.63.1.1.3.0|2|2 +1.3.6.1.4.1.9.9.63.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.63.1.3.3.0|66|0 +1.3.6.1.4.1.9.9.63.1.3.4.0|66|100 +1.3.6.1.4.1.9.9.63.1.3.5.0|66|0 +1.3.6.1.4.1.9.9.63.1.3.6.0|2|2 +1.3.6.1.4.1.9.9.63.1.3.7.0|2|2 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.1.1.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.2.0|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.3.0|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.3.8.5.1.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.3.11.1.0|2|1 +1.3.6.1.4.1.9.9.63.1.3.11.2.0|66|1 +1.3.6.1.4.1.9.9.63.1.3.11.3.0|66|0 +1.3.6.1.4.1.9.9.63.1.3.11.4.0|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.3.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.1.1.4.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.3.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.2.1.4.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.3.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.3.1.4.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.3.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.4.1.4.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.3.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.1.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.2.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.61|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.62|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.63|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.64|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.65|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.66|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.67|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.68|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.69|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.70|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.71|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.3.72|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.6|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.7|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.8|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.9|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.10|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.11|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.12|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.13|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.14|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.15|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.16|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.17|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.18|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.19|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.20|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.21|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.22|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.23|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.24|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.25|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.26|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.27|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.28|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.29|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.30|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.31|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.32|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.33|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.34|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.35|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.36|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.37|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.38|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.39|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.40|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.41|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.42|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.43|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.44|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.45|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.46|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.47|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.48|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.49|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.50|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.51|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.52|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.53|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.54|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.55|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.56|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.57|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.58|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.59|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.5.1.4.4.60|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.1.1|4x|4d6f6e2c2030322053657020323032342031353a33303a353420474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.1.2|4x|4d6f6e2c2030322053657020323032342031353a33303a353520474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.1.3|4x|4d6f6e2c2030322053657020323032342031353a33303a353720474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.1.4|4x|4d6f6e2c2030322053657020323032342031353a33303a353820474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.1.5|4x|4d6f6e2c2030322053657020323032342031353a33303a353920474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.2.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.2.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.2.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.2.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.2.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.3.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.3.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.3.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.3.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.6.1.4.3.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.1.1|4x|4d6f6e2c2030322053657020323032342031353a33303a353520474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.1.2|4x|4d6f6e2c2030322053657020323032342031353a33303a353620474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.1.3|4x|4d6f6e2c2030322053657020323032342031353a33303a353720474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.1.4|4x|4d6f6e2c2030322053657020323032342031353a33303a353820474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.1.5|4x|4d6f6e2c2030322053657020323032342031353a33303a353920474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.2.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.2.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.2.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.2.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.2.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.3.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.3.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.3.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.3.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.7.1.4.3.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.1.1|4x|4d6f6e2c2030322053657020323032342031353a33303a353520474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.1.2|4x|4d6f6e2c2030322053657020323032342031353a33303a353620474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.1.3|4x|4d6f6e2c2030322053657020323032342031353a33303a353720474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.1.4|4x|4d6f6e2c2030322053657020323032342031353a33303a353820474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.1.5|4x|4d6f6e2c2030322053657020323032342031353a33303a353920474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.2.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.2.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.2.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.2.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.2.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.3.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.3.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.3.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.3.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.8.1.4.3.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.2.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.3.1|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.3.2|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.3.3|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.3.4|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.3.3.5|66|0 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.1.1|4x|4d6f6e2c2030322053657020323032342031353a33303a353520474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.1.2|4x|4d6f6e2c2030322053657020323032342031353a33303a353620474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.1.3|4x|4d6f6e2c2030322053657020323032342031353a33303a353720474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.1.4|4x|4d6f6e2c2030322053657020323032342031353a33303a353820474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.1.5|4x|4d6f6e2c2030322053657020323032342031353a33303a353920474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.2.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.2.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.2.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.2.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.2.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.3.1|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.3.2|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.3.3|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.3.4|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.9.1.4.3.5|4x|4d6f6e2c203031204a616e20313930302030303a30303a303020474d54 +1.3.6.1.4.1.9.9.63.1.4.3.10.0|66|5 +1.3.6.1.4.1.9.9.63.1.4.3.11.0|66|5 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.1|4x|f0000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.5|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.52|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.72|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.176|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.177|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.178|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.179|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.180|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.181|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.182|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.183|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.184|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.186|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.187|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.191|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.193|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.200|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.205|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.1002|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.1003|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.1004|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.2.1005|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.1|4x|f0000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.5|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.52|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.72|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.176|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.177|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.178|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.179|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.180|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.181|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.182|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.183|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.184|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.186|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.187|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.191|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.193|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.200|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.205|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.1002|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.1003|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.1004|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.1.1.3.1005|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.68.1.2.2.1.1.1|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.1.2|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.1.3|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.1.4|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.1|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.2|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.3|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.4|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.3.1|2|2 +1.3.6.1.4.1.9.9.68.1.2.2.1.3.2|2|2 +1.3.6.1.4.1.9.9.68.1.2.2.1.3.3|2|2 +1.3.6.1.4.1.9.9.68.1.2.2.1.3.4|2|2 +1.3.6.1.4.1.9.9.68.1.2.3.1.2.1.1|4x|f0 +1.3.6.1.4.1.9.9.68.1.3.1.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.2.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.3.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.4.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.5.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.6.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.7.0|65|0 +1.3.6.1.4.1.9.9.68.1.3.8.0|65|0 +1.3.6.1.4.1.9.9.68.1.4.1.0|2|2 +1.3.6.1.4.1.9.9.68.1.5.1.1.1.1|2|4096 +1.3.6.1.4.1.9.9.68.1.5.1.1.1.2|2|4096 +1.3.6.1.4.1.9.9.68.1.5.1.1.1.3|2|4096 +1.3.6.1.4.1.9.9.68.1.5.1.1.1.4|2|4096 +1.3.6.1.4.1.9.9.80.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.80.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.80.1.1.3.0|66|0 +1.3.6.1.4.1.9.9.80.1.1.4.0|65|0 +1.3.6.1.4.1.9.9.81.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.3.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.4.0|65|0 +1.3.6.1.4.1.9.9.81.1.1.5.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.6.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.7.0|66|0 +1.3.6.1.4.1.9.9.81.1.1.8.0|65|0 +1.3.6.1.4.1.9.9.81.1.2.1.0|66|0 +1.3.6.1.4.1.9.9.81.1.2.2.0|66|0 +1.3.6.1.4.1.9.9.81.1.2.3.0|66|0 +1.3.6.1.4.1.9.9.81.1.2.4.0|65|0 +1.3.6.1.4.1.9.9.86.1.3.1.0|2|2 +1.3.6.1.4.1.9.9.86.1.3.2.0|2|2 +1.3.6.1.4.1.9.9.86.1.3.3.0|2|2 +1.3.6.1.4.1.9.9.86.1.3.4.0|2|2 +1.3.6.1.4.1.9.9.86.1.6.1.0|66|0 +1.3.6.1.4.1.9.9.86.1.6.2.0|66|0 +1.3.6.1.4.1.9.9.86.1.7.1.0|66|0 +1.3.6.1.4.1.9.9.86.1.7.2.0|66|0 +1.3.6.1.4.1.9.9.86.1.7.3.0|66|0 +1.3.6.1.4.1.9.9.86.1.7.4.0|66|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2001|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2002|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.1.2003|2|8 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2001|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2002|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.2.2003|2|9 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2001|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2002|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.3.2003|2|0 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2001|2|39 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2002|2|37 +1.3.6.1.4.1.9.9.91.1.1.1.1.4.2003|2|54 +1.3.6.1.4.1.9.9.91.1.1.1.1.5.2001|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.5.2002|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.5.2003|2|1 +1.3.6.1.4.1.9.9.91.1.1.1.1.6.2001|67|454344205 +1.3.6.1.4.1.9.9.91.1.1.1.1.6.2002|67|454344205 +1.3.6.1.4.1.9.9.91.1.1.1.1.6.2003|67|454344205 +1.3.6.1.4.1.9.9.91.1.1.1.1.7.2001|2|60 +1.3.6.1.4.1.9.9.91.1.1.1.1.7.2002|2|60 +1.3.6.1.4.1.9.9.91.1.1.1.1.7.2003|2|60 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2001|2|2000 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2002|2|2000 +1.3.6.1.4.1.9.9.91.1.1.1.1.8.2003|2|2000 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2001.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2001.2|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2001.3|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2001.4|2|1 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2002.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2002.2|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2002.3|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2002.4|2|1 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2003.1|2|10 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2003.2|2|20 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2003.3|2|30 +1.3.6.1.4.1.9.9.91.1.2.1.1.2.2003.4|2|1 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2001.1|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2001.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2001.3|2|5 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2001.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2002.1|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2002.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2002.3|2|5 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2002.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2003.1|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2003.2|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2003.3|2|5 +1.3.6.1.4.1.9.9.91.1.2.1.1.3.2003.4|2|4 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2001.1|2|54 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2001.2|2|57 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2001.3|2|60 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2001.4|2|61 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2002.1|2|58 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2002.2|2|61 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2002.3|2|64 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2002.4|2|65 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2003.1|2|94 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2003.2|2|99 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2003.3|2|104 +1.3.6.1.4.1.9.9.91.1.2.1.1.4.2003.4|2|105 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2001.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2001.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2001.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2001.4|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2002.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2002.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2002.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2002.4|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2003.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2003.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2003.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.5.2003.4|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2001.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2001.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2001.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2001.4|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2002.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2002.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2002.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2002.4|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2003.1|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2003.2|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2003.3|2|2 +1.3.6.1.4.1.9.9.91.1.2.1.1.6.2003.4|2|2 +1.3.6.1.4.1.9.9.92.1.1.1.1.2|4x|436973636f2053797374656d7320496e63 +1.3.6.1.4.1.9.9.92.1.1.1.1.1000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.4.1.9.9.92.1.1.1.1.1040|4|CISCO +1.3.6.1.4.1.9.9.92.1.1.1.1.1280|4|CISCO +1.3.6.1.4.1.9.9.92.1.1.1.1.2000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.4.1.9.9.92.1.1.1.1.3000|4x|436973636f2053797374656d7320496e63 +1.3.6.1.4.1.9.9.92.1.1.1.5.2|4| +1.3.6.1.4.1.9.9.92.1.1.1.5.1000|4| +1.3.6.1.4.1.9.9.92.1.1.1.5.1040|4x|36382d323233362d3031 +1.3.6.1.4.1.9.9.92.1.1.1.5.1280|4x|36382d323233362d3031 +1.3.6.1.4.1.9.9.92.1.1.1.5.2000|4| +1.3.6.1.4.1.9.9.92.1.1.1.5.3000|4| +1.3.6.1.4.1.9.9.92.1.1.1.6.2|4| +1.3.6.1.4.1.9.9.92.1.1.1.6.1000|4| +1.3.6.1.4.1.9.9.92.1.1.1.6.1040|4|A0 +1.3.6.1.4.1.9.9.92.1.1.1.6.1280|4|A0 +1.3.6.1.4.1.9.9.92.1.1.1.6.2000|4| +1.3.6.1.4.1.9.9.92.1.1.1.6.3000|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.2|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.1000|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.1040|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.1280|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.2000|4| +1.3.6.1.4.1.9.9.92.1.1.1.7.3000|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.2|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.1000|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.1040|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.1280|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.2000|4| +1.3.6.1.4.1.9.9.92.1.1.1.9.3000|4| +1.3.6.1.4.1.9.9.92.1.1.1.11.2|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.4.1.9.9.92.1.1.1.11.1000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.4.1.9.9.92.1.1.1.11.1040|4|CNUIAHSAAA +1.3.6.1.4.1.9.9.92.1.1.1.11.1280|4|CNUIAHSAAA +1.3.6.1.4.1.9.9.92.1.1.1.11.2000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.4.1.9.9.92.1.1.1.11.3000|4x|55524e3a434c45493a554e41535349474e4544 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.2|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.3|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.4|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.5|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.6|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.1.7|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.1|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.2|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.3|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.4|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.5|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.6|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.2.7|4x|8c1e806f2360 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.1|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.2|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.3|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.4|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.5|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.6|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.3.7|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.1|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.2|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.3|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.4|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.5|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.6|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.4.7|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.1|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.2|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.3|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.4|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.5|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.6|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.5.7|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.1|2|128 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.2|2|128 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.3|2|128 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.4|2|128 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.5|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.6|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.6.7|2|128 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.1|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.2|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.3|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.4|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.5|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.6|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.7.7|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.1|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.2|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.3|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.4|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.5|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.6|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.8.7|2|0 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.1|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.2|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.3|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.4|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.5|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.6|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.9.7|2|1 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.1|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.2|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.3|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.4|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.5|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.6|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.10.7|2|3 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.1|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.2|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.3|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.4|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.5|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.6|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.11.7|2|2 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.1|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.2|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.3|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.4|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.5|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.6|66|90 +1.3.6.1.4.1.9.9.98.1.1.1.1.12.7|66|90 +1.3.6.1.4.1.9.9.109.1.1.1.1.2.5|2|2101 +1.3.6.1.4.1.9.9.109.1.1.1.1.3.5|66|12 +1.3.6.1.4.1.9.9.109.1.1.1.1.4.5|66|11 +1.3.6.1.4.1.9.9.109.1.1.1.1.5.5|66|11 +1.3.6.1.4.1.9.9.109.1.1.1.1.6.5|66|12 +1.3.6.1.4.1.9.9.109.1.1.1.1.7.5|66|11 +1.3.6.1.4.1.9.9.109.1.1.1.1.8.5|66|11 +1.3.6.1.4.1.9.9.109.1.1.1.1.9.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.10.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.11.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.12.5|66|4867808 +1.3.6.1.4.1.9.9.109.1.1.1.1.13.5|66|10970952 +1.3.6.1.4.1.9.9.109.1.1.1.1.14.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.15.5|66|10890616 +1.3.6.1.4.1.9.9.109.1.1.1.1.16.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.17.5|70|4867808 +1.3.6.1.4.1.9.9.109.1.1.1.1.18.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.19.5|70|10970952 +1.3.6.1.4.1.9.9.109.1.1.1.1.20.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.21.5|70|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.22.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.23.5|70|10890616 +1.3.6.1.4.1.9.9.109.1.1.1.1.24.5|66|145 +1.3.6.1.4.1.9.9.109.1.1.1.1.25.5|66|135 +1.3.6.1.4.1.9.9.109.1.1.1.1.26.5|66|129 +1.3.6.1.4.1.9.9.109.1.1.1.1.27.5|66|5035496 +1.3.6.1.4.1.9.9.109.1.1.1.1.28.5|66|0 +1.3.6.1.4.1.9.9.109.1.1.1.1.29.5|70|5035496 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.0|2|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.1|2|1 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.2|2|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.3|2|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.4|2|4 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.5|2|5 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.6|2|6 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.7|2|7 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.8|2|8 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.9|2|9 +1.3.6.1.4.1.9.9.109.1.1.2.1.2.5.10|2|10 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.0|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.1|66|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.2|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.3|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.4|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.5|66|5 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.6|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.7|66|100 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.8|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.9|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.3.5.10|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.0|66|5 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.1|66|4 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.2|66|5 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.3|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.4|66|1 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.5|66|5 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.6|66|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.7|66|100 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.8|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.9|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.4.5.10|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.0|66|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.1|66|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.2|66|3 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.3|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.4|66|1 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.5|66|4 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.6|66|2 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.7|66|100 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.8|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.9|66|0 +1.3.6.1.4.1.9.9.109.1.1.2.1.5.5.10|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.4076|66|4076 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.4156|66|4156 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.4368|66|4368 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.4917|66|4917 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.5577|66|5577 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.10989|66|10989 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.11696|66|11696 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.15084|66|15084 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.15413|66|15413 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.15636|66|15636 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.15899|66|15899 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16039|66|16039 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16186|66|16186 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16338|66|16338 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16503|66|16503 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16641|66|16641 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16890|66|16890 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.16999|66|16999 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.17633|66|17633 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.17762|66|17762 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.17969|66|17969 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.18235|66|18235 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.20396|66|20396 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.20600|66|20600 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.23469|66|23469 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.23849|66|23849 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.25100|66|25100 +1.3.6.1.4.1.9.9.109.1.2.1.1.1.5.25672|66|25672 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.4076|4x|6c696e75785f696f73642d696d6167 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.4156|4x|737461636b5f6d6772 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.4368|4|cmand +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.4917|4|emd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.5577|4x|7269665f6d6772 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.10989|4|vman +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.11696|4|lman +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.15084|4|wncmgrd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.15413|4x|776e63645f30 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.15636|4|rrm +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.15899|4|rogued +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16039|4|nmspd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16186|4|mobilityd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16338|4|psd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16503|4|sessmgrd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16641|4|smand +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16890|4|repm +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.16999|4|plogd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.17633|4|hman +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.17762|4x|666d616e5f7270 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.17969|4|dbm +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.18235|4x|636c695f6167656e74 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.20396|4x|666d616e5f66705f696d616765 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.20600|4x|636d616e5f6670 +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.23469|4|hman +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.23849|4|cmcc +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.25100|4|iomd +1.3.6.1.4.1.9.9.109.1.2.1.1.2.5.25672|4|iomd +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.4076|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.4156|66|9 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.5577|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.10989|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.15084|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.15636|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.15899|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16039|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16186|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16338|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16503|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.16999|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.17633|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.17762|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.17969|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.18235|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.23469|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.4.5.25672|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.4076|67|6142 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.4156|67|6153 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.4368|67|6178 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.4917|67|6262 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.5577|67|6328 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.10989|67|8342 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.11696|67|8415 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.15084|67|8771 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.15413|67|8800 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.15636|67|8820 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.15899|67|8846 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16039|67|8875 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16186|67|8904 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16338|67|8935 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16503|67|8965 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16641|67|8995 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16890|67|9045 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.16999|67|9070 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.17633|67|9204 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.17762|67|9230 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.17969|67|9269 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.18235|67|9321 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.20396|67|9562 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.20600|67|9583 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.23469|67|9886 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.23849|67|9921 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.25100|67|10003 +1.3.6.1.4.1.9.9.109.1.2.1.1.5.5.25672|67|10056 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.4076|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.4156|66|9 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.5577|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.10989|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.15084|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.15636|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.15899|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16039|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16186|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16338|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16503|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.16999|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.17633|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.17762|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.17969|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.18235|66|2 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.23469|66|1 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.1.1.6.5.25672|66|2 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.4076|66|1527468032 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.4156|66|37654528 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.4368|66|46710784 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.4917|66|23285760 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.5577|66|37416960 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.10989|66|33857536 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.11696|66|24956928 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.15084|66|425717760 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.15413|66|440393728 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.15636|66|189210624 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.15899|66|179777536 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16039|66|172843008 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16186|66|219881472 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16338|66|127131648 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16503|66|214425600 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16641|66|116027392 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16890|66|165036032 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.16999|66|17334272 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.17633|66|26525696 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.17762|66|165539840 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.17969|66|364462080 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.18235|66|231276544 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.20396|66|245010432 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.20600|66|35602432 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.23469|66|22024192 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.23849|66|38125568 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.25100|66|71114752 +1.3.6.1.4.1.9.9.109.1.2.2.1.1.5.25672|66|72011776 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.2.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.3.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.4.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.4076|66|6 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.5.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.4076|66|7 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.6.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.4076|66|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.7.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.4076|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.4156|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.4368|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.4917|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.5577|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.10989|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.11696|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.15084|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.15413|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.15636|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.15899|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16039|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16186|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16338|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16503|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16641|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16890|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.16999|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.17633|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.17762|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.17969|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.18235|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.20396|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.20600|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.23469|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.23849|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.25100|2|3 +1.3.6.1.4.1.9.9.109.1.2.2.1.8.5.25672|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.4076|66|1527468032 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.4156|66|37654528 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.4368|66|46710784 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.4917|66|23285760 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.5577|66|37416960 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.10989|66|33857536 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.11696|66|24956928 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.15084|66|425717760 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.15413|66|440528896 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.15636|66|189210624 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.15899|66|179777536 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16039|66|172843008 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16186|66|219881472 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16338|66|127131648 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16503|66|214425600 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16641|66|116027392 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16890|66|165036032 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.16999|66|17334272 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.17633|66|26525696 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.17762|66|165539840 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.17969|66|364462080 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.18235|66|231276544 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.20396|66|245010432 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.20600|66|35602432 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.23469|66|22024192 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.23849|66|38125568 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.25100|66|71114752 +1.3.6.1.4.1.9.9.109.1.2.3.1.1.5.25672|66|72011776 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.2.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.3.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.4.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.4076|66|6 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.5.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.4076|66|7 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.6.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.4076|66|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.15413|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.20396|66|1 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.7.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.4076|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.4156|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.4368|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.4917|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.5577|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.10989|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.11696|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.15084|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.15413|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.15636|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.15899|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16039|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16186|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16338|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16503|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16641|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16890|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.16999|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.17633|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.17762|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.17969|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.18235|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.20396|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.20600|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.23469|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.23849|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.25100|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.8.5.25672|2|3 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.4076|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.4156|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.4368|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.4917|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.5577|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.10989|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.11696|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.15084|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.15413|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.15636|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.15899|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16039|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16186|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16338|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16503|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16641|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16890|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.16999|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.17633|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.17762|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.17969|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.18235|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.20396|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.20600|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.23469|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.23849|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.25100|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.9.5.25672|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.4076|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.4156|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.4368|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.4917|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.5577|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.10989|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.11696|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.15084|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.15413|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.15636|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.15899|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16039|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16186|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16338|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16503|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16641|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16890|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.16999|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.17633|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.17762|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.17969|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.18235|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.20396|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.20600|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.23469|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.23849|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.25100|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.10.5.25672|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.11.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.4076|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.4156|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.4368|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.4917|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.5577|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.10989|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.11696|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.15084|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.15413|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.15636|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.15899|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16039|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16186|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16338|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16503|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16641|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16890|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.16999|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.17633|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.17762|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.17969|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.18235|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.20396|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.20600|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.23469|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.23849|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.25100|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.12.5.25672|65|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.4076|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.4156|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.4368|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.4917|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.5577|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.10989|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.11696|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.15084|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.15413|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.15636|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.15899|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16039|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16186|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16338|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16503|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16641|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16890|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.16999|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.17633|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.17762|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.17969|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.18235|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.20396|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.20600|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.23469|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.23849|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.25100|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.13.5.25672|2|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.4076|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.4156|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.4368|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.4917|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.5577|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.10989|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.11696|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.15084|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.15413|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.15636|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.15899|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16039|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16186|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16338|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16503|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16641|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16890|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.16999|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.17633|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.17762|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.17969|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.18235|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.20396|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.20600|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.23469|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.23849|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.25100|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.14.5.25672|4| +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.15.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.16.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.17.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.18.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.19.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.4076|70|1527468032 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.4156|70|37654528 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.4368|70|46710784 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.4917|70|23285760 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.5577|70|37416960 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.10989|70|33857536 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.11696|70|24956928 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.15084|70|425717760 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.15413|70|440528896 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.15636|70|189210624 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.15899|70|179777536 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16039|70|172843008 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16186|70|219881472 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16338|70|127131648 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16503|70|214425600 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16641|70|116027392 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16890|70|165036032 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.16999|70|17334272 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.17633|70|26525696 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.17762|70|165539840 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.17969|70|364462080 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.18235|70|231276544 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.20396|70|245010432 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.20600|70|35602432 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.23469|70|22024192 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.23849|70|38125568 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.25100|70|71114752 +1.3.6.1.4.1.9.9.109.1.2.3.1.20.5.25672|70|72011776 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.4076|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.4156|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.4368|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.4917|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.5577|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.10989|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.11696|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.15084|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.15413|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.15636|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.15899|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16039|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16186|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16338|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16503|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16641|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16890|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.16999|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.17633|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.17762|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.17969|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.18235|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.20396|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.20600|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.23469|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.23849|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.25100|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.21.5.25672|66|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.4076|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.4156|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.4368|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.4917|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.5577|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.10989|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.11696|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.15084|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.15413|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.15636|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.15899|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16039|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16186|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16338|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16503|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16641|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16890|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.16999|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.17633|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.17762|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.17969|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.18235|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.20396|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.20600|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.23469|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.23849|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.25100|70|0 +1.3.6.1.4.1.9.9.109.1.2.3.1.22.5.25672|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.1|4x|4368756e6b204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.2|4x|4c6f6164204d65746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.3|4x|5370616e547265652048656c706572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.4|4x|524620536c617665204d61696e20546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.5|4x|43545320534741434c20646220636f72652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.6|4x|52657472616e736d697373696f6e206f66204950432056657273696f6e696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.7|4x|49504320495353552044697370617463682050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.8|4x|45444452495f4d41494e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.9|4x|524f204e6f746966792054696d657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.10|4x|436865636b206865617073 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.11|4x|506f6f6c204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.12|4x|4469736361726451204261636b67726f756e64204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.13|4|Timers +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.14|4x|57415443485f414653 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.15|4x|4d454d4c45414b2050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.16|4x|41525020496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.17|4x|415250204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.18|4x|41544d2049646c652054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.19|4x|41544d204153594e432050524f43 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.20|4x|4141415f5345525645525f4445414454494d45 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.21|4x|506f6c696379204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.22|4x|4444522054696d657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.23|4x|456e74697479204d494220415049 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.24|4|PrstVbl +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.25|4x|524d4920524d204e6f74696679205761746368656420506f6c696379 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.26|4x|494f535845206865617274626561742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.27|4x|4442204c6f636b204d616e61676572206c6f636b20726571756573742070722a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.28|4|GraphIt +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.29|4x|4442204e6f74696669636174696f6e204d616e616765722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.30|4x|41544d204175746f564320506572696f646963 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.31|4x|41544d205643204175746f204372656174696f6e205461736b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.32|4x|4950432041707073205461736b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.33|4x|6966496e64657820526563656976652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.34|4x|495043204576656e74204e6f746966696572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.35|4x|495043204d636173742050656e64696e672047726f757020416374696f6e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.36|4x|506c6174666f726d2061707073657373204563686f2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.37|4x|4950432044796e616d6963204361636865 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.38|4x|4950432053657276696365204e6f6e436f6e662053657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.39|4x|495043205a6f6e65204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.40|4x|49504320506572696f6469632054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.41|4x|49504320446566657272656420506f727420436c6f73757265 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.42|4x|4950432050726f63657373206c6576656c2073656e6473 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.43|4x|4950432053656174204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.44|4x|49504320436865636b2051756575652054696d652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.45|4x|495043205365617420525820436f6e74726f6c6c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.46|4x|495043205365617420545820436f6e74726f6c6c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.47|4x|495043204b65657020416c697665204d65737361676573 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.48|4x|495043204c6f61646f6d65746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.49|4x|4950432053657373696f6e2044657461696c73 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.50|4x|53454e534f522d4d4752206576656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.51|4x|436f6d7075746520535250207261746573 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.52|4x|434546204d494220415049 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.53|4x|53657269616c204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.54|4x|4c6963656e7365204950432073746174696320776f726b6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.55|4x|4c6963656e73652049504320736572766572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.56|4x|4e657420496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.57|4x|4469616c6572206576656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.58|4x|494f535845207369676e616c7320494f5320636d642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.59|4|SMART +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.60|4x|636c69656e745f656e746974795f73656e64696e675f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.61|4x|52462053435450746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.62|4x|43484b50542052472053435450746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.63|4x|53455249414c204127646574656374 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.64|4x|63727970746f20737720706b2070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.65|4x|4c6963656e736520436c69656e74204e6f74696669636174696f6e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.66|4|SAEventLog +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.67|4|SAStorage +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.68|4|SASConnect +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.69|4|SASRcvWQ +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.70|4|SACConnect +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.71|4|SACRcvWQ +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.72|4x|496d616765204c6963656e73652062726f6b6572206576656e74732070726f2a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.73|4x|4c6963656e73696e67204175746f205570646174652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.74|4x|4c6963656e736520484120436f6e73697374656e637920436865636b6572202a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.75|4x|546f6b656e204461656d6f6e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.76|4x|437269746963616c20426b676e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.77|4x|4e6574204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.78|4x|49444220576f726b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.79|4|Logger +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.80|4x|545459204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.81|4x|45574c4320494f5344204341505741502050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.82|4x|45574c4320494f5344204841494e46524120524d492050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.83|4x|43545320434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.84|4x|53585020434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.85|4|SASRcvWQWrk1 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.86|4x|48412053534f20474152502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.87|4x|6d444e53204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.88|4x|6d444e53204841204346 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.89|4x|435453204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.90|4x|4354532048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.91|4x|435453204841206f7065726174696f6e20646174612073796e632070726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.92|4x|494f534420697063207461736b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.93|4x|494f534420636861736673207461736b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.94|4x|4372696d736f6e20696e74657266616365206d617070696e672063726561742a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.95|4x|4372696d736f6e204461746162617365204d656d6f727920417564697420502a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.96|4x|4372696d736f6e20666c757368207472616e73616374696f6e732050726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.97|4x|4372696d736f6e20636f6e6669672070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.98|4x|524544554e44414e43592046534d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.99|4x|5342432049504320486f6c642051756575652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.100|4x|50756e742046502053746174732044756d702050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.101|4x|50756e74496e6a656374204b656570616c6976652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.102|4x|49462d4d475220636f6e74726f6c2070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.103|4x|49462d4d4752206576656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.104|4x|434d414e205250204d73672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.105|4x|456e7669726f6e6d656e74616c204d6f6e69746f72696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.106|4x|525020484120506572696f646963 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.107|4x|4442414c204556454e5453 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.108|4x|6370665f6d73675f686f6c64715f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.109|4x|6370665f6d73675f726376715f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.110|4x|6370665f70726f636573735f747051 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.111|4x|535441434b204d47522050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.112|4x|4e6574776f726b2d7266204e6f74696679204e65676f20446f6e65 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.113|4x|434f4e534f4c452068656c7065722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.114|4x|494f5358452d5250204e47494f2048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.115|4x|4345462052525020524620776169746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.116|4x|4357414e204150532048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.117|4x|524544554e44414e43592070656572206d6f6e69746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.118|4x|3130306d7320636865636b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.119|4x|5246204357414e2048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.120|4x|4357414e204946204556454e542048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.121|4x|414e4350204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.122|4x|414e43502048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.123|4x|516f532048412049442052455441494e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.124|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.125|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.126|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.127|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.128|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.129|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.130|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.131|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.132|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.133|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.134|4x|43484b5054205465737420636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.135|4x|4448435043204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.136|4x|4448435044204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.137|4x|4448435076362052656c6179204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.138|4x|44484350763620536572766572204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.139|4x|495056365f4e44204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.140|4x|534953462048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.141|4x|415250204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.142|4x|5844522052525020524620776169746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.143|4x|494f5358452d52502050756e7420536572766963652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.144|4x|494f5358452d52502050756e74204950563620536572766963652050726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.145|4x|41434c204c6f672050756e7420536572766963652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.146|4x|41434c2064656e792070756e7420736572766963652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.147|4x|4c32204c4953502050756e742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.148|4x|4f4653444e2050756e6a6563742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.149|4x|5349532050756e742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.150|4x|494f5358452d5250205350412054534d2048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.151|4x|494f5358452d5250205146502048412050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.152|4x|494b45204841204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.153|4x|4950534543204841204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.154|4x|43727970746f20504b492d4841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.155|4x|5246204d6173746572204d61696e20546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.156|4x|5246204d61737465722053746174757320546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.157|4|SACRcvWQWrk1 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.158|4|SACRcvWQWrk2 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.159|4x|4241434b20434845434b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.160|4|SAMsgThread +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.161|4x|436f6d70757465206c6f61642061766773 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.162|4x|5065722d6d696e757465204a6f6273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.163|4x|5065722d5365636f6e64204a6f6273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.164|4x|4167674d67722050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.165|4x|5472616e73706f727420506f7274204167656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.166|4x|414354322043727970746f20456e67696e6520447269766572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.167|4x|4645435f4c696e6b5f6576656e745f68616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.168|4x|4e475743204c324d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.169|4x|45454d204544204d4154 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.170|4x|45454d204544204e44 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.171|4x|494f5358452d5250204661737450617468204d6573736167652050726f63652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.172|4x|53726320466c7472206261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.173|4x|66616e72705f6d6163736563 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.174|4x|4d414353454320504f535420726573746f7265206267 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.175|4x|4d414353454320504f53542068616e646c65207374617465206368616e67652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.176|4x|4d414353454320504f53542068616e646c652070756e7420646174612070612a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.177|4x|445358334d4942206c6c2068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.178|4x|66616e72705f6c32666962 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.179|4x|504f5320415053204576656e742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.180|4x|4e657473796e632045534d432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.181|4x|6e6574636c6b5f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.182|4x|6e6574636c6b5f68615f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.183|4x|53534c56504e2052656769737465722050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.184|4x|4950536563206261636b67726f756e642070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.185|4x|465044204d616e6167656d656e742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.186|4x|46504420416374696f6e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.187|4x|424644204857204556454e54 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.188|4x|42464420495056362041444452204348414e4745 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.189|4x|4d4350205250206175746f76632070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.190|4x|424d41204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.191|4x|564d49204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.192|4x|57534d415f4e4f54494659 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.193|4x|4d474d54452073746174732050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.194|4x|5349534620537769746368657220546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.195|4x|496e74657220436861737369732050726f746f636f6c204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.196|4x|4357414e2043484f43582050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.197|4x|434533204d61696c626f78 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.198|4x|435433204d61696c626f78 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.199|4x|48414c204d61696c626f78 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.200|4x|4d4950204d61696c626f78 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.201|4x|4357414e204f49522048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.202|4x|414345206576656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.203|4x|4143452048415049 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.204|4x|41434520706f6c696379206c6f61646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.205|4x|5450204355544f564552204556454e54 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.206|4x|494f5358452d5250204661737450617468204d6573736167652050726f63652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.207|4x|415352314b2045534d432050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.208|4x|415352313030302d5250205350412041544d204f4952 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.209|4x|52545459532050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.210|4x|5049204d41544d204167696e672050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.211|4x|4454502050726f746f636f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.212|4x|504b492f53534c204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.213|4x|504b495f53534c204c534320456e726f6c6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.214|4x|504b495f53534c205472757374706f696e742043657274204d6f64696679 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.215|4x|504b492f53534c20574c43204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.216|4x|534b41204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.217|4|Ethchnl +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.218|4x|3830322e317820737769746368 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.219|4x|534e4d50204d41205341 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.220|4x|41414120536572766572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.221|4x|41414120414343542050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.222|4x|4143435420506572696f6469632050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.223|4x|4344502050726f746f636f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.224|4x|5345505f77656275695f77736d615f68747470 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.225|4x|43616c6c20486f6d652054696d65722050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.226|4x|43454620737769746368696e67206261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.227|4x|41444a204e53462070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.228|4x|4141412044696374696f6e6172792052656379636c65 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.229|4x|46485250204d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.230|4x|545241434b204d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.231|4x|545241434b20436c69656e7420746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.232|4x|56525250204d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.233|4x|56525253204d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.234|4x|41544d204f414d20496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.235|4x|41544d204f414d2054494d4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.236|4x|48514620424c5420555044415445 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.237|4x|485146205441524745542044594e414d4943 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.238|4x|4950204152502041646a6163656e6379 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.239|4x|4950204152502052657472792041676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.240|4x|495020496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.241|4x|49434d50206576656e742068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.242|4x|4651444e2041434c204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.243|4|mDNS +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.244|4x|50494d207265676973746572206173796e6368726f6e6f75732074756e6e652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.245|4x|495076362070696e672070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.246|4x|5345505f77656275695f77736d615f68747470 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.247|4x|50505020534950 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.248|4x|5050502042696e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.249|4x|50505020495020526f757465 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.250|4x|504b49205472757374706f6f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.251|4x|524942204c4d2056414c4944415445 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.252|4x|53534d20636f6e6e656374696f6e206d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.253|4x|535353204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.254|4x|53535320506f6c696379204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.255|4x|5353532046656174757265204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.256|4x|53535320466561747572652054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.257|4x|5370616e6e696e672054726565 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.258|4x|5370616e54726565204d7367 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.259|4x|54756e6e656c20424750 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.260|4|VRRS +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.261|4x|582e323520456e63617073204d616e616765 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.262|4x|582e323520456e63617073205375622d496e74657266616365204d616e61672a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.263|4x|4b52423520414141 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.264|4x|4d61696e74656e616e6365206d6f64652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.265|4x|45746865726e6574204c4d49 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.266|4x|45746865726e6574204f414d2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.267|4x|45746865726e65742043464d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.268|4x|45504d2049414c2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.269|4x|534e4d50204442414c2057524150504552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.270|4x|534e4d50204442414c20436163686520496e76616c69646174696f6e2070722a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.271|4x|534e4d50204442414c2043616368652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.272|4x|6d63702063616c6c686f6d6520706572696f64696320636865636b2070726f2a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.273|4x|50504350205250205374617473204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.274|4|MKA +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.275|4x|4170706e6176206175746f20646973636f76657279 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.276|4x|4c324649422054696d6572204469737061746368 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.277|4x|4d4c524942204c32204d736720546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.278|4x|4e5645206d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.279|4x|5370616e6e696e6720547265652053746174652053796e63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.280|4x|52414241504f4c204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.281|4x|52414241504f4c2048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.282|4x|54454d504c415445204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.283|4x|44564c414e204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.284|4|CCM +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.285|4x|43434d2049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.286|4x|5247204661756c74732054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.287|4x|5247205650 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.288|4x|5247204152 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.289|4x|52472050726f746f636f6c2054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.290|4x|5247205472616e73706f72742054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.291|4x|48444c43204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.292|4x|53424320696e697469616c697a6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.293|4x|53564d204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.294|4|UDLD +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.295|4x|4c3252494220546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.296|4x|414320537769746368 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.297|4x|444150522045522070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.298|4x|494544474520414343542054494d4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.299|4x|49534720434d442048414e444c4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.300|4x|494d412050524f43 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.301|4x|4950204c6974652073657373696f6e2070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.302|4x|495020504f525442554e444c45 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.303|4x|535353204d6f62696c697479206d6573736167652068616e646c657220 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.304|4x|4950205374617469632053657373696f6e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.305|4x|44564c414e20436f6e6669672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.306|4x|4950414d2f4f444150204576656e7473 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.307|4x|4950414d204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.308|4x|4950414d204576656e7473 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.309|4x|4f43452070756e74656420506b74732050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.310|4x|4f2d554e4920436c69656e74204d73672050726f63657373696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.311|4x|4c53502054756e6e656c20465252 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.312|4x|4d504c53204175746f2d54756e6e656c2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.313|4x|73745f70775f6f616d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.314|4x|535220534944204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.315|4x|414141204550442048414e444c4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.316|4x|504d2045504420415049 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.317|4x|444d2050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.318|4x|5241444955532050726f7879 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.319|4x|53535320504d205348494d20514f532054494d4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.320|4x|4c4f4e4720544f2053484f5254204e414d452054494d4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.321|4x|54696d65722068616e646c657220666f722044756d6d79204148 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.322|4x|5072657061696420726573706f6e73652068616e646c657220666f722070722a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.323|4x|54696d656420506f6c69637920616374696f6e2068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.324|4x|41414120726573706f6e73652068616e646c657220666f72204175746f20532a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.325|4x|7261646975732072616473656320636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.326|4x|5443502054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.327|4x|5443502050726f746f636f6c73 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.328|4x|536f636b65742054696d657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.329|4x|4854545020434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.330|4x|584452206261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.331|4x|584452206d63617374 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.332|4x|5844522052502050696e67204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.333|4x|5844522072656365697665 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.334|4x|495043204c43204d6573736167652048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.335|4x|5844522052502054657374204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.336|4x|465252204261636b67726f756e642050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.337|4x|434546206261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.338|4x|6669625f6669625f6266645f7362206576656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.339|4x|49502049524450 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.340|4x|4c53442048412050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.341|4x|434546205250204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.342|4x|6e6261722d67726170682d73656e646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.343|4x|6e6261722d637573746f6d2d70726f74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.344|4x|6e6261722d73646176632d7363686564756c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.345|4x|6e6261722d70702d6d6f6e69746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.346|4x|54756e6e656c20464942 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.347|4x|52455452595f5245504f50554c4154455f4c435f42475f50524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.348|4x|466c6f77204578706f727465722054696d65722041646d696e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.349|4x|466c6f77204578706f72746572205061636b65742053656e64696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.350|4x|4e455854484f505f4d41435f50524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.351|4x|45776c6320636f7079206d716970632068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.352|4x|45776c6320636c69206d716970632068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.353|4x|41502075706772616465204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.354|4x|4950205472616365726f757465 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.355|4x|576972656c657373204172702050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.356|4x|49474d50534e204c324d434d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.357|4x|49474d50534e204d5244 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.358|4|IGMPSN +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.359|4x|4546502045727264 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.360|4x|4574686572204546502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.361|4x|4d4c44534e204c324d434d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.362|4|MRD +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.363|4x|4d4c445f534e4f4f50 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.364|4|IGMPQR +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.365|4x|4c324d4341535420576972656c657373204950432050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.366|4x|49474d50534e2d4841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.367|4x|69676d70736e20636170776170206964622068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.368|4x|4d4c44534e2d4841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.369|4x|4c324d434153542d48412d574952454c455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.370|4x|4141412053797374656d20416363742050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.371|4x|5650575320546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.372|4x|4143204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.373|4x|4556504e205650575320546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.374|4|Tunnel +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.375|4x|415449505f5544505f54534b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.376|4x|534e4d502054696d657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.377|4x|526f7574696e6720546f706f6c6f67792050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.378|4x|49502052494220557064617465 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.379|4x|4950204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.380|4x|495020436f6e6e656374656420526f757465204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.381|4x|50505020436f6d707265737320496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.382|4x|50505020436f6d7072657373205265736574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.383|4x|4345463a20495076342070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.384|4x|41444a206261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.385|4x|436f6c6c656374696f6e2070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.386|4x|41444a207265736f6c76652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.387|4|COPS +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.388|4x|4469616c657220466f72776172646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.389|4x|5365727669636520526f7574696e67204d4350 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.390|4x|5352204361704d616e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.391|4x|444e532053657276696365 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.392|4x|4f564c4420535041204261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.393|4x|4d464942204d6173746572206261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.394|4x|4e41542d524f555445 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.395|4x|4d56504e204d67722050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.396|4x|4d756c746963617374204f66666c6f6164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.397|4x|5241525020496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.398|4|static +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.399|4x|41707020526f7574652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.400|4x|495076362052494220436c65616e75702048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.401|4x|4950763620524942204576656e742048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.402|4x|49507636205374617469632048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.403|4x|444843507636204c5120636c69656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.404|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.405|4x|4c4150422050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.406|4x|505050204e4246 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.407|4x|506652204252204c6561726e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.408|4x|50414420496e43616c6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.409|4x|582e3235204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.410|4x|516f532073746174732070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.411|4x|5242534350204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.412|4x|53435450204d61696e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.413|4x|5650444e2063616c6c206d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.414|4x|584320524942204d4752 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.415|4x|53534c206261636b67726f756e642070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.416|4x|53656c6563742054696d657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.417|4x|485454502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.418|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.419|4x|42534f5f5175657279 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.420|4x|53495346204d61696e20546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.421|4x|457468657220496e667261205250 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.422|4x|43464d20484120495043206d6573736167652064657175657565696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.423|4x|45746865726e657420504d2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.424|4x|45746865726e657420504d20536f66747761726520466f7277617264696e672a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.425|4x|45746865726e657420504d204d6f6e69746f72696e672070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.426|4x|45746865726e65742044617461706c616e65204c6f6f706261636b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.427|4x|454c422048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.428|4x|5443502048412050524f43 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.429|4x|4247502048412053534f +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.430|4x|525356502053594e43 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.431|4x|535348204576656e742068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.432|4x|58445220464f462070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.433|4x|535220506f6c696379204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.434|4x|535220506f6c696379204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.435|4x|504d2048412042756c6b2053796e632054696d65722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.436|4x|424420526f757465204d736720486f6c64712050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.437|4x|424420526f7574652052782050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.438|4x|4244204d4143534543204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.439|4x|4244204d41435345432048412043484b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.440|4x|4244204d41435345432042756c6b2053796e632054696d65722070726f63652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.441|4x|4c32464942204576656e74204469737061746368 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.442|4x|4556504e206d61696e20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.443|4x|4e5645204d47522052574154434820544852454144 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.444|4x|76786c616e207372206d61696e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.445|4x|5354502048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.446|4x|414141204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.447|4x|41414120484120636c65616e7570 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.448|4x|61635f61746d5f73746174655f6576656e745f68616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.449|4x|61635f61746d5f6d726170735f687370775f6576656e745f70726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.450|4x|41432048412042756c6b2053796e632054696d65722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.451|4x|41544d204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.452|4x|41544d2048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.453|4x|41544d204841204143 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.454|4x|424644204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.455|4x|4652204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.456|4x|474c4250204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.457|4x|48535250204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.458|4x|4950205349502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.459|4x|4d5249422052502050524f4345535320495043204d53472070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.460|4x|4d5249422052502050726f7879 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.461|4x|495076362041434c2052502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.462|4x|4e657473796e632049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.463|4x|5050506f45205652525320455654204d6772 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.464|4x|52472049662d4d67722054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.465|4x|5247204d656469612054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.466|4x|4d435052502052472054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.467|4x|5646492048412042756c6b2053796e632054696d65722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.468|4x|5843205249422048412042756c6b2053796e632054696d65722070726f63652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.469|4x|58432042475020534947205249422048412042756c6b2053796e632054696d2a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.470|4x|4556504e2048412042756c6b2053796e632054696d65722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.471|4x|5650444e2043434d204261636b67726f756e64204461656d6f6e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.472|4x|56525250204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.473|4x|5654454d504c4154452049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.474|4x|494f5358452d52502050756e7420516f53204341432050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.475|4x|43454d2050524f43 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.476|4x|43454d204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.477|4x|43454d204841204143 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.478|4x|4c325820537769746368696e67204576656e7473 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.479|4x|544c53434c49454e545f50524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.480|4x|50726f626520496e707574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.481|4x|495020496e62616e642053657373696f6e20496e69746961746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.482|4x|4448435020534950 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.483|4x|465252204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.484|4x|4d464920436f6d6d2052502050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.485|4x|50617468207365742062726f6b657220636c65616e757020706174682070722a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.486|4x|4c4644204c6162656c20426c6f636b20436c65616e7570 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.487|4x|4c4450204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.488|4x|4d504c532056504e20484120436c69656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.489|4x|54535054554e204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.490|4x|52535650204841205365727669636573 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.491|4x|5445204e5352204f4f532044422050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.492|4x|4d504c53205450204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.493|4x|41546f4d2048412042756c6b2053796e632054696d65722070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.494|4x|41546f4d204d47522048412049504320466c6f772050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.495|4x|4f414d2044504d +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.496|4x|4f414d2044504d204247205441534b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.497|4x|4c46447020496e7075742050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.498|4x|41414120436163686564205365727665722047726f7570 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.499|4x|4469616d6574657220426173652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.500|4x|454e41424c4520414141 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.501|4x|454d204261636b67726f756e642050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.502|4x|4651444e204d6772204d61696e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.503|4x|4651444e204d6772205061636b6574 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.504|4x|4c4441502070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.505|4x|4f7061717565204461746162617365 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.506|4x|4b657920636861696e206c6976656b657973 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.507|4x|4c494e4520414141 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.508|4x|4c4f43414c20414141 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.509|4x|45746865722d535041206261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.510|4|TPLUS +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.511|4x|43727970746f20575549 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.512|4x|45535420436c69656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.513|4x|44796e436d64205061636b6167652050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.514|4x|436f6e73656e7420746f6b656e2070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.515|4x|4d4d412044422054494d4552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.516|4x|464c455820445350524d204d41494e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.517|4x|5653505f4d4752 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.518|4x|5354554e5f415050 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.519|4x|5354554e5f54455354 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.520|4x|4d616e657420496e667261204261636b67726f756e64 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.521|4x|4541502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.522|4x|54696d6572204c696272617279 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.523|4x|43727970746f20537570706f7274 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.524|4x|495053454376362050532050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.525|4x|49444d475220434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.526|4x|4d504c53204175746f204d6573682050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.527|4x|4e49535420726e672070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.528|4x|4141412050726f7879 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.529|4x|45574c432f414141204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.530|4x|45574c432f414141204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.531|4x|4e47494e582f414141204950432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.532|4x|5253434d534d20564f4c554d45204d4f4e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.533|4x|43435349505f4556454e545f5452414345 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.534|4x|536970204d5041 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.535|4x|514f535f4d4f44554c455f4d41494e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.536|4x|696f73705f65656d5f676c6f62616c5f70726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.537|4x|4950205452555354205265676973746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.538|4x|566f495020414141 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.539|4x|63727970746f20656e67696e652070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.540|4x|525341206261636b67726f756e642070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.541|4x|43727970746f204341 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.542|4x|43727970746f20504b492d43524c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.543|4x|43727970746f20504b492d5265762d5065657273 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.544|4x|504b49204f435350 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.545|4x|504b49205265766f636174696f6e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.546|4x|656e63727970742070726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.547|4x|46696c6520436f70792048616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.548|4x|434f4e445f44454255472048412049504320666c6f7720636f6e74726f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.549|4x|50494d204841 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.550|4x|4d4d4f4e2050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.551|4x|514f532050455255534552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.552|4x|52504d535f50524f435f4d41494e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.553|4x|6874747020636c69656e742070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.554|4x|52414449555320494f205354415453 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.555|4x|545053204950432050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.556|4x|43727970746f20494b457632 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.557|4x|494b457632204141412068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.558|4x|43525950544f204d4150204652454520444546455220434d41502050726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.559|4x|43727970746f20494e54 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.560|4x|43727970746f20494b452044697370617463686572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.561|4x|43727970746f20494b4d50 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.562|4x|4950534543206d616e75616c206b6579 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.563|4x|4950534543206b657920656e67696e65 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.564|4x|43727970746f2041434c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.565|4x|43727970746f205041532050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.566|4x|474b4d20474d2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.567|4x|474b4d204b532050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.568|4x|5345474d454e5420524f5554494e47 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.569|4x|53524d535f50524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.570|4x|4c53204c4942 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.571|4x|4c617766756c20496e74657263657074 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.572|4x|4c49206d6573736167696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.573|4x|4c6963656e73696e67204d49422070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.574|4x|56545020547261702050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.575|4x|4141412053454e442053544f50204556454e54 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.576|4x|546573742041414120436c69656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.577|4x|64636d5f636c695f656e67696e65 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.578|4x|64636d5f636c695f70726f7669646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.579|4x|44434d20436f726520546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.580|4x|45454d204544205379736c6f67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.581|4x|45454d2045442047656e65726963 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.582|4x|45454d204544204e485250 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.583|4x|45454d20454420547261636b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.584|4x|45454d20454420526f7574696e67 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.585|4x|45454d204544205265736f75726365 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.586|4x|5379736c6f67205472617073 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.587|4x|4f564c4420535041204261636b67726f756e642070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.588|4x|466c617368206c6f77206469736b20737061636520616c6572742050726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.589|4x|506f6c6963792048412054696d65722068616e646c6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.590|4x|495076362041636365737320436f6e74726f6c204c697374 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.591|4x|4f6e6c696e6520446961672045454d205461736b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.592|4x|53504120454e544954592050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.593|4x|4441505220524d2050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.594|4x|4441505220524d205243562050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.595|4x|4441505220464e4620436f6c6c6563746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.596|4x|4d4350525020554944502050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.597|4x|494b45763220466c657856504e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.598|4x|494b45763220436c7573746572204c6f61642042616c616e636572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.599|4x|534f4e4554205472617073 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.600|4x|495347204d4942206a6f6273204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.601|4|SASRcvWQWrk2 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.602|4x|534c45204442205574696c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.603|4x|45574c4320514f53204d53472050524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.604|4x|464e465f45574c435f574952454c4553535f50524f43455353 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.605|4x|45574c43204c6963656e7365204f444d2071756572792070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.606|4x|495020534c41732049434d50204a6974746572204576656e742050726f63652a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.607|4x|495020534c4173204a6974746572204576656e742050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.608|4x|504d2043616c6c6261636b +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.609|4x|44434d20736e6d7020647020546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.610|4x|736e6d702064636d206d61207368696d20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.611|4x|42756c6b737461742d436c69656e74 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.612|4x|64636d5f65787072657373696f6e5f70726f7669646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.613|4x|45454d20536572766572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.614|4x|43616c6c20486f6d652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.615|4x|45454d20506f6c696379204469726563746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.616|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.617|4x|45454d20454420434c49 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.618|4x|45454d20454420436f756e746572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.619|4x|45454d20454420496e74657266616365 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.620|4x|45454d20454420494f535744 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.621|4x|45454d204544204e6f6e65 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.622|4x|45454d204544204f4952 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.623|4x|45454d204544205246 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.624|4x|45454d20454420534e4d50 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.625|4x|45454d20454420534e4d50204f626a656374 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.626|4x|45454d20454420534e4d50204e6f7469 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.627|4x|45454d2045442054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.628|4x|45454d204544204970736c61 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.629|4x|45454d2045442054657374 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.630|4x|45454d20454420436f6e666967 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.631|4x|45454d20454420456e76 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.632|4x|45454d204544204453 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.633|4x|45454d204544204352415348 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.634|4x|454d20454420474f4c44 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.635|4|Syslog +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.636|4x|506e502d4d6f6e69746f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.637|4x|4e6574776f726b2053796e6368726f6e697a6174696f6e2053656c656374692a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.638|4x|495020534c41732045746865726e6574204576656e742050726f636573736f72 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.639|4x|5644432070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.640|4x|716f735f6d6f6e5f706572696f6469632050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.641|4x|45454d20454420525043 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.642|4x|4354532063726564656e7469616c732070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.643|4x|52424d20434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.644|4x|534741434c204c4f4720434f5245 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.645|4x|49535355205574696c6974792050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.646|4x|494f5358452d5250205669727475616c207365727669636520726573706f6e2a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.647|4x|494f584e534520495043204d73672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.648|4x|494f584e534520495043204d73672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.649|4x|495020534e4d50 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.650|4x|4f6e6c696e65204469616720434e53205075626c697368202873656e6429202a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.651|4x|4f6e6c696e65204469616720434e532053756273637269626520286c6973742a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.652|4x|57534d414e2050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.653|4x|564c414e204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.654|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.655|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.656|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.657|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.658|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.659|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.660|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.661|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.662|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.663|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.664|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.665|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.666|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.667|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.668|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.669|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.670|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.671|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.672|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.673|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.674|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.675|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.676|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.677|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.678|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.679|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.680|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.681|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.682|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.683|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.684|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.685|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.686|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.687|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.688|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.689|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.690|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.691|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.692|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.693|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.694|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.695|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.696|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.697|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.698|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.699|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.700|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.701|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.702|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.703|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.704|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.705|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.706|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.707|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.708|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.709|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.710|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.711|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.712|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.713|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.714|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.715|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.716|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.717|4x|49504320495353552056657273696f6e696e672050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.718|4x|4357414e204f4952204950432052656164792050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.719|4x|534243206d61696e2070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.720|4x|4d5249422050726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.721|4x|45454d2048656c70657220546872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.722|4x|534243204d73672041636b2054696d6572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.723|4x|534e4d50204c4120436163686520496e76616c69646174696f6e2070726f632a +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.724|4x|4f5456204576656e74204469737061746368 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.725|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.728|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.729|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.730|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.731|4x|4f4e455020446973706174636820706f6f6c20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.732|4x|4f4e45502044697370617463682058444d206d61696e +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.733|4x|584f53206173796e632073796e632058444d20746872656164 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.734|4x|4f4e4550204e6574776f726b20456c656d656e742050726f6365737320 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.735|4x|5044552044495350415443484552 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.736|4x|534e4d5020454e47494e45 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.737|4x|495020534e4d505636 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.738|4x|534e4d5020436f6e66436f707950726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.739|4x|534e4d50205472617073 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.740|4|RADIUS +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.741|4x|4c4c44502050726f746f636f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.742|4x|4c4143502050726f746f636f6c +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.744|4x|534e4d50204d616e61676572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.745|4x|534e4d502050726f787920466f72776172646572 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.746|4|NTP +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.747|4x|4e545020417578696c696172792050726f63 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.748|4x|454d20416374696f6e20434e53 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.749|4x|534e4d50204c412043616368652070726f63657373 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.750|4x|4469616743617264312f2d31 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.751|4x|4469616743617264322f2d31 +1.3.6.1.4.1.9.9.109.1.4.1.1.2.5.4076.752|4x|4469616743617264332f2d31 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.1|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.2|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.3|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.4|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.10|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.11|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.13|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.16|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.17|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.18|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.22|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.23|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.24|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.28|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.30|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.31|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.53|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.57|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.59|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.64|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.66|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.67|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.68|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.69|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.70|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.71|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.73|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.77|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.78|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.79|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.80|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.81|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.83|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.84|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.85|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.87|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.88|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.89|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.92|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.93|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.94|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.96|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.97|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.101|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.104|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.107|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.111|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.140|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.143|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.155|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.156|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.157|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.158|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.160|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.161|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.162|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.166|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.167|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.169|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.170|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.180|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.181|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.190|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.191|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.193|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.195|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.200|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.201|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.202|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.203|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.210|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.211|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.212|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.214|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.215|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.216|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.217|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.218|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.219|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.220|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.223|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.225|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.228|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.234|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.235|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.238|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.244|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.246|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.247|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.248|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.249|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.252|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.257|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.258|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.259|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.263|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.264|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.265|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.266|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.267|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.269|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.272|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.274|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.286|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.288|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.289|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.290|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.292|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.294|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.295|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.297|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.299|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.302|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.303|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.304|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.305|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.306|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.308|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.309|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.327|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.329|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.337|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.342|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.343|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.344|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.345|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.348|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.349|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.350|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.351|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.352|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.355|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.356|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.359|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.360|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.361|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.367|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.371|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.373|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.374|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.375|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.379|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.380|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.381|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.382|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.383|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.385|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.386|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.388|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.390|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.392|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.394|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.395|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.396|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.398|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.399|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.403|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.406|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.407|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.409|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.410|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.411|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.412|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.417|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.421|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.424|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.431|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.433|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.434|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.438|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.439|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.444|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.458|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.463|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.465|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.466|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.478|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.479|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.481|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.488|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.489|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.491|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.492|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.495|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.496|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.497|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.498|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.499|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.500|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.504|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.507|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.508|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.509|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.510|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.511|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.512|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.516|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.517|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.518|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.520|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.522|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.523|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.527|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.532|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.534|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.540|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.541|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.542|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.547|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.549|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.550|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.554|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.555|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.556|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.558|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.560|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.561|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.563|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.566|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.571|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.572|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.574|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.575|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.578|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.579|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.580|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.581|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.582|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.583|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.584|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.585|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.587|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.588|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.592|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.593|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.594|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.596|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.600|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.601|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.602|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.603|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.604|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.605|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.608|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.609|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.610|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.611|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.612|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.613|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.614|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.615|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.617|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.618|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.619|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.620|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.621|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.622|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.623|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.624|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.625|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.626|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.627|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.628|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.629|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.630|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.631|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.632|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.633|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.634|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.635|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.641|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.642|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.643|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.649|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.652|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.653|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.719|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.720|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.721|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.723|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.724|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.734|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.735|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.736|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.737|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.739|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.740|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.741|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.742|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.746|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.747|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.749|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.750|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.751|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.3.5.4076.752|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.1|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.2|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.3|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.4|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.10|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.11|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.13|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.16|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.17|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.18|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.22|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.23|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.24|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.28|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.30|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.31|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.53|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.57|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.59|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.64|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.66|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.67|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.68|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.69|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.70|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.71|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.73|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.77|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.78|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.79|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.80|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.81|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.83|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.84|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.85|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.87|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.88|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.89|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.92|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.93|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.94|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.96|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.97|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.101|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.104|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.107|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.111|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.140|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.143|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.155|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.156|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.157|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.158|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.160|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.161|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.162|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.166|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.167|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.169|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.170|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.180|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.181|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.190|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.191|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.193|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.195|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.200|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.201|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.202|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.203|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.210|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.211|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.212|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.214|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.215|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.216|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.217|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.218|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.219|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.220|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.223|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.225|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.228|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.234|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.235|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.238|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.244|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.246|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.247|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.248|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.249|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.252|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.257|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.258|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.259|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.263|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.264|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.265|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.266|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.267|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.269|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.272|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.274|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.286|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.288|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.289|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.290|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.292|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.294|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.295|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.297|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.299|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.302|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.303|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.304|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.305|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.306|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.308|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.309|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.327|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.329|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.337|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.342|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.343|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.344|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.345|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.348|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.349|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.350|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.351|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.352|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.355|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.356|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.359|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.360|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.361|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.367|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.371|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.373|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.374|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.375|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.379|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.380|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.381|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.382|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.383|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.385|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.386|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.388|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.390|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.392|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.394|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.395|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.396|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.398|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.399|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.403|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.406|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.407|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.409|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.410|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.411|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.412|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.417|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.421|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.424|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.431|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.433|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.434|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.438|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.439|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.444|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.458|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.463|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.465|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.466|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.478|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.479|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.481|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.488|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.489|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.491|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.492|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.495|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.496|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.497|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.498|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.499|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.500|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.504|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.507|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.508|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.509|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.510|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.511|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.512|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.516|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.517|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.518|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.520|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.522|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.523|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.527|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.532|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.534|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.540|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.541|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.542|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.547|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.549|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.550|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.554|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.555|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.556|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.558|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.560|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.561|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.563|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.566|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.571|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.572|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.574|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.575|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.578|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.579|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.580|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.581|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.582|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.583|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.584|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.585|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.587|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.588|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.592|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.593|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.594|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.596|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.600|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.601|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.602|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.603|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.604|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.605|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.608|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.609|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.610|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.611|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.612|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.613|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.614|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.615|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.617|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.618|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.619|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.620|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.621|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.622|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.623|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.624|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.625|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.626|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.627|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.628|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.629|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.630|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.631|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.632|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.633|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.634|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.635|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.641|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.642|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.643|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.649|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.652|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.653|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.719|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.720|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.721|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.723|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.724|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.734|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.735|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.736|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.737|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.739|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.740|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.741|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.742|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.746|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.747|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.749|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.750|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.751|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.4.5.4076.752|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.1|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.2|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.3|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.4|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.10|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.11|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.13|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.16|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.17|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.18|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.22|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.23|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.24|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.28|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.30|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.31|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.53|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.57|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.59|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.64|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.66|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.67|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.68|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.69|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.70|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.71|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.73|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.77|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.78|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.79|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.80|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.81|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.83|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.84|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.85|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.87|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.88|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.89|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.92|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.93|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.94|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.96|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.97|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.101|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.104|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.107|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.111|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.140|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.143|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.155|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.156|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.157|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.158|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.160|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.161|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.162|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.166|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.167|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.169|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.170|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.180|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.181|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.190|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.191|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.193|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.195|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.200|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.201|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.202|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.203|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.210|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.211|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.212|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.214|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.215|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.216|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.217|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.218|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.219|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.220|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.223|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.225|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.228|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.234|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.235|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.238|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.244|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.246|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.247|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.248|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.249|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.252|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.257|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.258|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.259|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.263|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.264|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.265|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.266|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.267|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.269|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.272|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.274|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.286|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.288|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.289|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.290|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.292|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.294|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.295|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.297|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.299|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.302|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.303|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.304|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.305|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.306|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.308|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.309|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.327|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.329|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.337|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.342|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.343|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.344|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.345|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.348|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.349|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.350|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.351|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.352|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.355|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.356|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.359|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.360|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.361|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.367|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.371|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.373|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.374|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.375|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.379|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.380|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.381|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.382|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.383|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.385|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.386|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.388|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.390|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.392|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.394|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.395|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.396|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.398|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.399|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.403|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.406|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.407|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.409|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.410|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.411|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.412|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.417|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.421|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.424|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.431|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.433|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.434|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.438|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.439|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.444|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.458|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.463|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.465|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.466|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.478|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.479|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.481|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.488|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.489|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.491|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.492|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.495|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.496|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.497|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.498|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.499|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.500|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.504|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.507|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.508|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.509|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.510|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.511|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.512|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.516|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.517|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.518|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.520|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.522|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.523|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.527|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.532|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.534|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.540|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.541|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.542|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.547|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.549|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.550|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.554|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.555|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.556|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.558|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.560|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.561|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.563|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.566|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.571|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.572|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.574|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.575|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.578|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.579|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.580|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.581|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.582|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.583|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.584|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.585|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.587|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.588|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.592|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.593|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.594|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.596|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.600|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.601|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.602|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.603|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.604|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.605|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.608|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.609|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.610|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.611|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.612|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.613|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.614|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.615|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.617|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.618|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.619|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.620|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.621|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.622|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.623|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.624|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.625|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.626|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.627|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.628|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.629|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.630|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.631|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.632|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.633|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.634|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.635|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.641|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.642|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.643|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.649|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.652|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.653|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.719|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.720|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.721|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.723|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.724|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.734|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.735|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.736|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.737|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.739|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.740|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.741|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.742|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.746|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.747|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.749|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.750|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.751|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.5.5.4076.752|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.1|66|5205288 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.2|66|43648 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.3|66|5024 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.4|66|21210664 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.8|66|65632 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.10|66|8736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.11|66|970967560 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.13|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.16|66|3098856776 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.17|66|10448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.18|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.22|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.23|66|621752 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.24|66|103416 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.28|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.30|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.31|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.43|66|2192 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.53|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.57|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.59|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.61|66|3224 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.62|66|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.64|66|2677776 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.66|66|1964144 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.67|66|232960 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.68|66|36472 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.69|66|303816 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.70|66|41176 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.71|66|116680 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.73|66|108678280 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.77|66|332272 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.78|66|7856 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.79|66|25466288 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.80|66|1024 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.81|66|16818160 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.83|66|10659672 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.84|66|459208 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.85|66|412796696 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.87|66|10544 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.88|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.89|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.92|66|2359935720 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.93|66|9280 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.94|66|66312 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.96|66|147426736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.97|66|208562480 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.101|66|1968 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.102|66|2176 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.104|66|5408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.107|66|2004824 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.111|66|632 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.140|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.143|66|261270896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.147|66|6864 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.155|66|43592 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.156|66|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.157|66|15048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.158|66|211824 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.160|66|3932209456 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.161|66|271288 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.162|66|75050064 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.166|66|15696 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.167|66|576 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.169|66|18000 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.170|66|20088 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.172|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.180|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.181|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.190|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.191|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.193|66|2650778480 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.194|66|3472 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.195|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.200|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.201|66|10800848 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.202|66|71400 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.203|66|405016 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.210|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.211|66|6400 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.212|66|37714272 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.213|66|26864 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.214|66|164600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.215|66|3874832 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.216|66|3392 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.217|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.218|66|704 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.219|66|10191480 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.220|66|17128 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.222|66|98736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.223|66|467948664 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.225|66|37424 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.226|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.227|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.228|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.229|66|3448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.230|66|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.231|66|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.232|66|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.233|66|45576 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.234|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.235|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.238|66|1015040 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.239|66|66064 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.243|66|143056 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.244|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.246|66|339868160 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.247|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.248|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.249|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.252|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.257|66|880 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.258|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.259|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.263|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.264|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.265|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.266|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.267|66|2600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.269|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.272|66|190488944 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.274|66|19568 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.276|66|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.277|66|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.278|66|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.286|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.288|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.289|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.290|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.292|66|410808 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.294|66|1776 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.295|66|3720 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.297|66|2432 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.299|66|10160 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.300|66|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.302|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.303|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.304|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.305|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.306|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.307|66|98736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.308|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.309|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.313|66|153728 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.325|66|100600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.327|66|790144 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.329|66|3823855808 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.330|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.337|66|37608 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.338|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.340|66|20448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.341|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.342|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.343|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.344|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.345|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.346|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.348|66|1440 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.349|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.350|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.351|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.352|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.355|66|1363168 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.356|66|167960 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.359|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.360|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.361|66|177608 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.367|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.371|66|6816 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.372|66|3008 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.373|66|4280 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.374|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.375|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.378|66|27200 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.379|66|135936 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.380|66|66184 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.381|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.382|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.383|66|942256 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.384|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.385|66|59720 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.386|66|720 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.387|66|1824 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.388|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.389|66|640 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.390|66|20312 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.391|66|976 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.392|66|18368 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.393|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.394|66|200 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.395|66|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.396|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.398|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.399|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.403|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.404|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.406|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.407|66|880 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.409|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.410|66|67808672 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.411|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.412|66|38912 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.417|66|56024 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.418|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.420|66|3440 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.421|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.424|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.429|66|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.430|66|16680 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.431|66|9016 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.432|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.433|66|17128 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.434|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.438|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.439|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.441|66|140184 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.442|66|4256 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.443|66|3800 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.444|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.447|66|98744 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.451|66|65576 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.458|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.460|66|760 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.463|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.465|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.466|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.475|66|4392 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.478|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.479|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.481|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.482|66|67928 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.483|66|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.487|66|7056 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.488|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.489|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.491|66|9048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.492|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.495|66|101160 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.496|66|36992 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.497|66|1800 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.498|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.499|66|50664 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.500|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.504|66|2328 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.507|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.508|66|16128 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.509|66|13456 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.510|66|2432 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.511|66|4192 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.512|66|6728 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.515|66|102888 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.516|66|283040 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.517|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.518|66|44592 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.519|66|1928 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.520|66|3408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.522|66|99192 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.523|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.527|66|36999280 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.528|66|8016 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.531|66|3424 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.532|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.534|66|14344 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.535|66|696632 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.540|66|275784 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.541|66|4605952 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.542|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.544|66|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.546|66|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.547|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.549|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.550|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.552|66|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.553|66|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.554|66|11300896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.555|66|3272 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.556|66|362256 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.558|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.560|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.561|66|68712 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.563|66|9240 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.566|66|9048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.567|66|432 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.571|66|19136 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.572|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.574|66|7912 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.575|66|77078056 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.577|66|4496 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.578|66|9656 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.579|66|31232 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.580|66|4291832 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.581|66|398488 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.582|66|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.583|66|18080 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.584|66|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.585|66|18512 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.587|66|24064 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.588|66|150084232 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.591|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.592|66|76070576 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.593|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.594|66|2384 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.596|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.598|66|1824 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.600|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.601|66|4241384560 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.602|66|100825856 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.603|66|384872 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.604|66|6742408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.605|66|5338536 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.608|66|4510664 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.609|66|30912 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.610|66|6288 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.611|66|17008 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.612|66|6888 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.613|66|3175696 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.614|66|294144 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.615|66|40728 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.616|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.617|66|159312 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.618|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.619|66|20704 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.620|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.621|66|93960 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.622|66|108264 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.623|66|18752 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.624|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.625|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.626|66|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.627|66|4322648 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.628|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.629|66|48848 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.630|66|26440 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.631|66|46320 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.632|66|24136 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.633|66|53336 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.634|66|54472 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.635|66|78816560 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.640|66|3008 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.641|66|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.642|66|6608 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.643|66|35801184 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.649|66|1013789896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.650|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.651|66|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.652|66|76048 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.653|66|314632 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.662|66|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.702|66|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.719|66|34427968 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.720|66|167912 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.721|66|3548896 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.723|66|31835512 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.724|66|4224 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.725|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.728|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.729|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.730|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.731|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.732|66|3904 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.733|66|3200 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.734|66|205704 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.735|66|2613488584 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.736|66|2024027800 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.737|66|1936 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.739|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.740|66|132104 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.741|66|507752656 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.742|66|65432 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.746|66|238928 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.747|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.748|66|3720 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.749|66|245974752 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.750|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.751|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.6.5.4076.752|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.1|66|2489936 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.2|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.3|66|2832 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.4|66|100016 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.10|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.11|66|971078112 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.13|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.16|66|3098763576 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.17|66|10232 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.18|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.22|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.23|66|4664 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.24|66|103416 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.28|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.30|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.31|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.53|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.57|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.59|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.64|66|648582312 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.66|66|2213024 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.67|66|262784 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.68|66|32648 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.69|66|188400 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.70|66|36712 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.71|66|1864 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.73|66|108678280 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.77|66|21736 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.78|66|4288 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.79|66|25466288 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.80|66|2440 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.81|66|11221872 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.83|66|5208280 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.84|66|29890736 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.85|66|409207536 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.86|66|1720 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.87|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.88|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.89|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.92|66|2223126888 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.93|66|9280 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.94|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.96|66|147400440 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.97|66|208568728 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.101|66|560 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.104|66|3104 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.107|66|24728 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.111|66|2920 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.140|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.143|66|24921016 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.155|66|78736 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.156|66|288 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.157|66|56104 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.158|66|596112 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.160|66|3727488776 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.161|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.162|66|75504720 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.166|66|16680 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.167|66|576 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.169|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.170|66|794352504 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.180|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.181|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.190|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.191|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.193|66|2650778552 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.195|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.200|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.201|66|1545312 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.202|66|29608 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.203|66|3737720 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.210|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.211|66|3744 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.212|66|37374584 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.214|66|172536 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.215|66|3694136 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.216|66|160 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.217|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.218|66|360 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.219|66|461104 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.220|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.223|66|182490704 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.225|66|1120 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.228|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.234|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.235|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.238|66|416 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.244|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.246|66|224098448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.247|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.248|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.249|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.252|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.257|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.258|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.259|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.263|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.264|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.265|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.266|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.267|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.269|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.272|66|190488944 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.274|66|1096 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.286|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.288|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.289|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.290|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.292|66|144 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.294|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.295|66|328 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.297|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.299|66|19008 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.302|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.303|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.304|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.305|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.306|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.308|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.309|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.326|66|156113112 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.327|66|532144 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.329|66|3612039712 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.337|66|23224 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.342|66|3268112 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.343|66|656 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.344|66|36912 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.345|66|592 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.348|66|124832 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.349|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.350|66|664 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.351|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.352|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.355|66|5064 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.356|66|1741920 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.359|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.360|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.361|66|907624 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.367|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.371|66|3520 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.373|66|888 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.374|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.375|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.376|66|1646264 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.379|66|136520 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.380|66|608 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.381|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.382|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.383|66|53696 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.385|66|58688 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.386|66|312 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.388|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.390|66|5568 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.392|66|18368 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.394|66|200 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.395|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.396|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.398|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.399|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.403|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.406|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.407|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.409|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.410|66|67808672 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.411|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.412|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.417|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.421|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.424|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.431|66|400 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.433|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.434|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.438|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.439|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.444|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.458|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.463|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.465|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.466|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.478|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.479|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.481|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.488|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.489|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.491|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.492|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.495|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.496|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.497|66|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.498|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.499|66|6544 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.500|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.504|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.507|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.508|66|9880 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.509|66|13456 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.510|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.511|66|1352 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.512|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.516|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.517|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.518|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.520|66|1392 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.522|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.523|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.527|66|36997648 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.532|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.534|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.540|66|275784 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.541|66|3451152 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.542|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.547|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.549|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.550|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.554|66|11300896 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.555|66|5512 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.556|66|808 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.558|66|1096 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.560|66|1016 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.561|66|27776 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.563|66|11128 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.566|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.571|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.572|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.574|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.575|66|317584240 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.578|66|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.579|66|6088 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.580|66|193592 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.581|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.582|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.583|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.584|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.585|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.587|66|24064 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.588|66|150084232 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.592|66|76059792 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.593|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.594|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.596|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.600|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.601|66|4083834584 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.602|66|170497192 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.603|66|152 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.604|66|5045792 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.605|66|5336680 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.608|66|4650600 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.609|66|936 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.610|66|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.611|66|21264 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.612|66|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.613|66|1251392 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.614|66|138496 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.615|66|1792 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.617|66|122776 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.618|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.619|66|10032 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.620|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.621|66|84160 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.622|66|123032 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.623|66|10304 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.624|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.625|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.626|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.627|66|4310968 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.628|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.629|66|39568 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.630|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.631|66|36880 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.632|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.633|66|37480 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.634|66|45528 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.635|66|78813008 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.641|66|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.642|66|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.643|66|6383200 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.649|66|959548000 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.652|66|53816 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.653|66|233544 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.719|66|51840 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.720|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.721|66|10160 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.723|66|146558992 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.724|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.734|66|1424 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.735|66|1509911624 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.736|66|3208460464 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.737|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.739|66|1914592 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.740|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.741|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.742|66|8776 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.746|66|203616 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.747|66|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.749|66|130605896 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.750|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.751|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.7.5.4076.752|66|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.1|65|144 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.2|65|908699 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.3|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.4|65|15 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.5|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.6|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.7|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.8|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.9|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.10|65|691261 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.11|65|75726 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.12|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.13|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.14|65|38080 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.15|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.16|65|8444902 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.17|65|4739154 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.18|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.19|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.20|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.21|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.22|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.23|65|293 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.24|65|204 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.25|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.26|65|2271651 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.27|65|16437 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.28|65|4543489 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.29|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.30|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.31|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.32|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.33|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.34|65|908680 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.35|65|4436582 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.36|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.37|65|75726 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.38|65|908680 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.39|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.40|65|4436582 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.41|65|4436582 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.42|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.43|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.44|65|259628 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.45|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.46|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.47|65|454352 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.48|65|908680 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.49|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.50|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.51|65|454352 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.52|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.53|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.54|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.55|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.56|65|303267 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.57|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.58|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.59|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.60|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.61|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.62|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.63|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.64|65|92141 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.65|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.66|65|3386 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.67|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.68|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.69|65|2537802 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.70|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.71|65|2543003 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.72|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.73|65|151450 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.74|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.75|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.76|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.77|65|8371530 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.78|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.79|65|228827 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.80|65|4542883 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.81|65|844 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.82|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.83|65|1259471 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.84|65|250193 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.85|65|2286625 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.86|65|878 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.87|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.88|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.89|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.90|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.91|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.92|65|9622208 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.93|65|2015252 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.94|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.95|65|45436 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.96|65|16812 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.97|65|18136744 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.98|65|649065 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.99|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.100|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.101|65|2271538 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.102|65|8 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.103|65|8 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.104|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.105|65|4542859 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.106|65|4542859 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.107|65|1842 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.108|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.109|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.110|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.111|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.112|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.113|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.114|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.115|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.116|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.117|65|4543101 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.118|65|45434895 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.119|65|75726 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.120|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.121|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.122|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.123|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.124|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.125|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.126|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.127|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.128|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.129|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.130|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.131|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.132|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.133|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.134|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.135|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.136|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.137|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.138|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.139|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.140|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.141|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.142|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.143|65|7230204 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.144|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.145|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.146|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.147|65|282313950 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.148|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.149|65|282313951 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.150|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.151|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.152|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.153|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.154|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.155|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.156|65|9 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.157|65|2271683 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.158|65|2276948 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.159|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.160|65|445986 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.161|65|454351 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.162|65|302120 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.163|65|4543503 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.164|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.165|65|84 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.166|65|38 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.167|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.168|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.169|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.170|65|473516 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.171|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.172|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.173|65|4436579 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.174|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.175|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.176|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.177|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.178|65|4436579 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.179|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.180|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.181|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.182|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.183|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.184|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.185|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.186|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.187|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.188|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.189|65|35469506 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.190|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.191|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.192|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.193|65|908659 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.194|65|3317323 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.195|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.196|65|4542856 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.197|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.198|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.199|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.200|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.201|65|79653 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.202|65|1514456 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.203|65|16509 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.204|65|37863 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.205|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.206|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.207|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.208|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.209|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.210|65|4542845 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.211|65|302916 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.212|65|1426 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.213|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.214|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.215|65|18 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.216|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.217|65|454348 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.218|65|852 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.219|65|131 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.220|65|44 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.221|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.222|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.223|65|708737 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.224|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.225|65|75727 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.226|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.227|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.228|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.229|65|4542856 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.230|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.231|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.232|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.233|65|70981832 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.234|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.235|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.236|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.237|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.238|65|4775084 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.239|65|141541598 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.240|65|76228 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.241|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.242|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.243|65|4542858 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.244|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.245|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.246|65|898372 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.247|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.248|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.249|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.250|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.251|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.252|65|910 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.253|65|75725 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.254|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.255|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.256|65|17748052 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.257|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.258|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.259|65|35469440 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.260|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.261|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.262|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.263|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.264|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.265|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.266|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.267|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.268|65|20 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.269|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.270|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.271|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.272|65|89128 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.273|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.274|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.275|65|15146 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.276|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.277|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.278|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.279|65|75727 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.280|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.281|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.282|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.283|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.284|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.285|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.286|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.287|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.288|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.289|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.290|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.291|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.292|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.293|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.294|65|45434902 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.295|65|4436988 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.296|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.297|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.298|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.299|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.300|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.301|65|1109254 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.302|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.303|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.304|65|1109252 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.305|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.306|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.307|65|141541614 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.308|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.309|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.310|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.311|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.312|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.313|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.314|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.315|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.316|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.317|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.318|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.319|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.320|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.321|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.322|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.323|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.324|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.325|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.326|65|256634 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.327|65|175 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.328|65|82 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.329|65|1393320 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.330|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.331|65|75726 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.332|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.333|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.334|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.335|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.336|65|75725 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.337|65|505970 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.338|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.339|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.340|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.341|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.342|65|4542849 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.343|65|908678 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.344|65|4542846 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.345|65|75726 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.346|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.347|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.348|65|1025 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.349|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.350|65|11 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.351|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.352|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.353|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.354|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.355|65|17 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.356|65|857 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.357|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.358|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.359|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.360|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.361|65|856 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.362|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.363|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.364|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.365|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.366|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.367|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.368|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.369|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.370|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.371|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.372|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.373|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.374|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.375|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.376|65|95826 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.377|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.378|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.379|65|76578 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.380|65|876 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.381|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.382|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.383|65|2271557 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.384|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.385|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.386|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.387|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.388|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.389|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.390|65|913 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.391|65|773 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.392|65|43 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.393|65|14901 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.394|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.395|65|850 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.396|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.397|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.398|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.399|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.400|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.401|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.402|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.403|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.404|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.405|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.406|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.407|65|4542816 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.408|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.409|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.410|65|454347 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.411|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.412|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.413|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.414|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.415|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.416|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.417|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.418|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.419|65|1245 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.420|65|17747034 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.421|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.422|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.423|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.424|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.425|65|1362738 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.426|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.427|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.428|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.429|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.430|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.431|65|1265 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.432|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.433|65|395 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.434|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.435|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.436|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.437|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.438|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.439|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.440|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.441|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.442|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.443|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.444|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.445|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.446|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.447|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.448|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.449|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.450|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.451|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.452|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.453|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.454|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.455|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.456|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.457|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.458|65|1109252 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.459|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.460|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.461|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.462|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.463|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.464|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.465|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.466|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.467|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.468|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.469|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.470|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.471|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.472|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.473|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.474|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.475|65|136 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.476|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.477|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.478|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.479|65|8872278 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.480|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.481|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.482|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.483|65|1135852 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.484|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.485|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.486|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.487|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.488|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.489|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.490|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.491|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.492|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.493|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.494|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.495|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.496|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.497|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.498|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.499|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.500|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.501|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.502|65|4542858 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.503|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.504|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.505|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.506|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.507|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.508|65|87 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.509|65|27 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.510|65|85838 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.511|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.512|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.513|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.514|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.515|65|70981818 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.516|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.517|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.518|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.519|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.520|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.521|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.522|65|8872278 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.523|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.524|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.525|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.526|65|406 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.527|65|2524 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.528|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.529|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.530|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.531|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.532|65|4543493 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.533|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.534|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.535|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.536|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.537|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.538|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.539|65|30419 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.540|65|54 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.541|65|109948 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.542|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.543|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.544|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.545|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.546|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.547|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.548|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.549|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.550|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.551|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.552|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.553|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.554|65|75725 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.555|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.556|65|4694475 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.557|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.558|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.559|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.560|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.561|65|64 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.562|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.563|65|227176 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.564|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.565|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.566|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.567|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.568|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.569|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.570|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.571|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.572|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.573|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.574|65|876 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.575|65|170766 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.576|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.577|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.578|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.579|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.580|65|103075 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.581|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.582|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.583|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.584|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.585|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.586|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.587|65|47 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.588|65|452810 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.589|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.590|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.591|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.592|65|227118 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.593|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.594|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.595|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.596|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.597|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.598|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.599|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.600|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.601|65|2879805 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.602|65|26541 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.603|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.604|65|18 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.605|65|1971 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.606|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.607|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.608|65|34528153 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.609|65|1069 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.610|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.611|65|454349 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.612|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.613|65|1646 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.614|65|12 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.615|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.616|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.617|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.618|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.619|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.620|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.621|65|10 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.622|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.623|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.624|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.625|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.626|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.627|65|89243 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.628|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.629|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.630|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.631|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.632|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.633|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.634|65|6 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.635|65|103166 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.636|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.637|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.638|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.639|65|908680 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.640|65|454347 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.641|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.642|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.643|65|209142 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.644|65|5049 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.645|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.646|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.647|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.648|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.649|65|5003149 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.650|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.651|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.652|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.653|65|454 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.654|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.655|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.656|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.657|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.658|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.659|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.660|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.661|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.662|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.663|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.664|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.665|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.666|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.667|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.668|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.669|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.670|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.671|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.672|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.673|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.674|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.675|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.676|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.677|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.678|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.679|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.680|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.681|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.682|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.683|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.684|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.685|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.686|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.687|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.688|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.689|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.690|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.691|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.692|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.693|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.694|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.695|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.696|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.697|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.698|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.699|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.700|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.701|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.702|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.703|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.704|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.705|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.706|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.707|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.708|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.709|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.710|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.711|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.712|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.713|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.714|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.715|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.716|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.717|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.718|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.719|65|9086435 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.720|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.721|65|2066 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.722|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.723|65|49948 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.724|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.725|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.728|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.729|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.730|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.731|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.732|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.733|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.734|65|22705658 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.735|65|2584201 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.736|65|4111956 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.737|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.738|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.739|65|889 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.740|65|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.741|65|608797 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.742|65|982386 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.744|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.745|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.746|65|4581414 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.747|65|75727 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.748|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.749|65|100191 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.750|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.751|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.8.5.4076.752|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.1|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.2|65|191552 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.3|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.4|65|28 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.5|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.6|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.7|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.8|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.9|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.10|65|3520635 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.11|65|5053 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.12|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.13|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.14|65|179 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.15|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.16|65|960310 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.17|65|49247 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.18|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.19|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.20|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.21|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.22|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.23|65|55 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.24|65|226 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.25|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.26|65|23426 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.27|65|364 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.28|65|30116 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.29|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.30|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.31|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.32|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.33|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.34|65|4222 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.35|65|32177 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.36|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.37|65|441 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.38|65|4473 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.39|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.40|65|32783 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.41|65|27867 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.42|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.43|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.44|65|1570 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.45|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.46|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.47|65|16328 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.48|65|31297 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.49|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.50|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.51|65|2810 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.52|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.53|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.54|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.55|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.56|65|3235 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.57|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.58|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.59|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.60|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.61|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.62|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.63|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.64|65|3645 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.65|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.66|65|898 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.67|65|14 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.68|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.69|65|35724 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.70|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.71|65|27432 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.72|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.73|65|6237 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.74|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.75|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.76|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.77|65|113669 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.78|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.79|65|11706 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.80|65|42719 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.81|65|1398 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.82|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.83|65|88918 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.84|65|34888 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.85|65|61790 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.86|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.87|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.88|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.89|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.90|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.91|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.92|65|1606186 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.93|65|45435 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.94|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.95|65|396281 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.96|65|4748 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.97|65|790567 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.98|65|5968 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.99|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.100|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.101|65|202590 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.102|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.103|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.104|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.105|65|34187 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.106|65|30796 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.107|65|690 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.108|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.109|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.110|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.111|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.112|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.113|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.114|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.115|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.116|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.117|65|48293 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.118|65|323563 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.119|65|434 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.120|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.121|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.122|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.123|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.124|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.125|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.126|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.127|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.128|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.129|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.130|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.131|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.132|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.133|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.134|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.135|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.136|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.137|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.138|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.139|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.140|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.141|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.142|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.143|65|262795 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.144|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.145|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.146|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.147|65|1596194 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.148|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.149|65|1585425 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.150|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.151|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.152|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.153|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.154|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.155|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.156|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.157|65|30748 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.158|65|30071 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.159|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.160|65|1538828 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.161|65|801012 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.162|65|790971 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.163|65|154720 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.164|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.165|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.166|65|19 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.167|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.168|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.169|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.170|65|7103 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.171|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.172|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.173|65|29083 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.174|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.175|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.176|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.177|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.178|65|28775 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.179|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.180|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.181|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.182|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.183|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.184|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.185|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.186|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.187|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.188|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.189|65|245334 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.190|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.191|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.192|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.193|65|121859 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.194|65|327223 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.195|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.196|65|22961 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.197|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.198|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.199|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.200|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.201|65|1185 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.202|65|14024 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.203|65|259 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.204|65|281 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.205|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.206|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.207|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.208|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.209|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.210|65|25612 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.211|65|15391 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.212|65|1308 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.213|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.214|65|9 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.215|65|193 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.216|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.217|65|3417 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.218|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.219|65|613 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.220|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.221|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.222|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.223|65|83086 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.224|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.225|65|1320 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.226|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.227|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.228|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.229|65|74963 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.230|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.231|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.232|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.233|65|782960 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.234|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.235|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.236|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.237|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.238|65|155245 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.239|65|829642 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.240|65|544 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.241|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.242|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.243|65|45977 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.244|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.245|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.246|65|436036 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.247|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.248|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.249|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.250|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.251|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.252|65|9 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.253|65|411 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.254|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.255|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.256|65|131979 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.257|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.258|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.259|65|242905 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.260|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.261|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.262|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.263|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.264|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.265|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.266|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.267|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.268|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.269|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.270|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.271|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.272|65|23632 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.273|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.274|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.275|65|103 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.276|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.277|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.278|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.279|65|480 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.280|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.281|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.282|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.283|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.284|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.285|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.286|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.287|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.288|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.289|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.290|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.291|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.292|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.293|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.294|65|519401 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.295|65|54255 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.296|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.297|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.298|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.299|65|4 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.300|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.301|65|6513 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.302|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.303|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.304|65|4568 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.305|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.306|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.307|65|924542 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.308|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.309|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.310|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.311|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.312|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.313|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.314|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.315|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.316|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.317|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.318|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.319|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.320|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.321|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.322|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.323|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.324|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.325|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.326|65|4104 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.327|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.328|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.329|65|5309217 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.330|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.331|65|706 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.332|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.333|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.334|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.335|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.336|65|383 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.337|65|8022 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.338|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.339|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.340|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.341|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.342|65|240863 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.343|65|10883 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.344|65|61091 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.345|65|1083 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.346|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.347|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.348|65|16 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.349|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.350|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.351|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.352|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.353|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.354|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.355|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.356|65|34 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.357|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.358|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.359|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.360|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.361|65|31 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.362|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.363|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.364|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.365|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.366|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.367|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.368|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.369|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.370|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.371|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.372|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.373|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.374|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.375|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.376|65|1632 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.377|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.378|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.379|65|666 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.380|65|24 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.381|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.382|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.383|65|19989 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.384|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.385|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.386|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.387|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.388|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.389|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.390|65|9 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.391|65|16 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.392|65|60 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.393|65|149 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.394|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.395|65|72 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.396|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.397|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.398|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.399|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.400|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.401|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.402|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.403|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.404|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.405|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.406|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.407|65|25073 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.408|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.409|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.410|65|52295 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.411|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.412|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.413|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.414|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.415|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.416|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.417|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.418|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.419|65|36 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.420|65|216079 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.421|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.422|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.423|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.424|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.425|65|11631 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.426|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.427|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.428|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.429|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.430|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.431|65|12 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.432|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.433|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.434|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.435|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.436|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.437|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.438|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.439|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.440|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.441|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.442|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.443|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.444|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.445|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.446|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.447|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.448|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.449|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.450|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.451|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.452|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.453|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.454|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.455|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.456|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.457|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.458|65|12084 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.459|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.460|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.461|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.462|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.463|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.464|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.465|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.466|65|9 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.467|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.468|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.469|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.470|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.471|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.472|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.473|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.474|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.475|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.476|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.477|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.478|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.479|65|73244 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.480|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.481|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.482|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.483|65|10807 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.484|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.485|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.486|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.487|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.488|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.489|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.490|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.491|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.492|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.493|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.494|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.495|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.496|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.497|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.498|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.499|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.500|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.501|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.502|65|37925 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.503|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.504|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.505|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.506|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.507|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.508|65|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.509|65|30 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.510|65|779 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.511|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.512|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.513|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.514|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.515|65|773832 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.516|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.517|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.518|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.519|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.520|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.521|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.522|65|61032 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.523|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.524|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.525|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.526|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.527|65|607 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.528|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.529|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.530|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.531|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.532|65|88531 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.533|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.534|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.535|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.536|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.537|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.538|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.539|65|326 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.540|65|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.541|65|1042 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.542|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.543|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.544|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.545|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.546|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.547|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.548|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.549|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.550|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.551|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.552|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.553|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.554|65|1667 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.555|65|13 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.556|65|71896 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.557|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.558|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.559|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.560|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.561|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.562|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.563|65|2238 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.564|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.565|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.566|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.567|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.568|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.569|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.570|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.571|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.572|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.573|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.574|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.575|65|6321 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.576|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.577|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.578|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.579|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.580|65|482 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.581|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.582|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.583|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.584|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.585|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.586|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.587|65|58 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.588|65|17343 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.589|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.590|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.591|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.592|65|25228 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.593|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.594|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.595|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.596|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.597|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.598|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.599|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.600|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.601|65|796574 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.602|65|4116 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.603|65|14 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.604|65|66 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.605|65|57808 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.606|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.607|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.608|65|396453 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.609|65|1015 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.610|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.611|65|6536 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.612|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.613|65|27 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.614|65|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.615|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.616|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.617|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.618|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.619|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.620|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.621|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.622|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.623|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.624|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.625|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.626|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.627|65|1709 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.628|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.629|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.630|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.631|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.632|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.633|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.634|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.635|65|12502 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.636|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.637|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.638|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.639|65|6648 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.640|65|6647 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.641|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.642|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.643|65|29857 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.644|65|30 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.645|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.646|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.647|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.648|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.649|65|152749 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.650|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.651|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.652|65|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.653|65|40 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.654|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.655|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.656|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.657|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.658|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.659|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.660|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.661|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.662|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.663|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.664|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.665|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.666|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.667|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.668|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.669|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.670|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.671|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.672|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.673|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.674|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.675|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.676|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.677|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.678|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.679|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.680|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.681|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.682|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.683|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.684|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.685|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.686|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.687|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.688|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.689|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.690|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.691|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.692|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.693|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.694|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.695|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.696|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.697|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.698|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.699|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.700|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.701|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.702|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.703|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.704|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.705|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.706|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.707|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.708|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.709|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.710|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.711|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.712|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.713|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.714|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.715|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.716|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.717|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.718|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.719|65|127210 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.720|65|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.721|65|35 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.722|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.723|65|2749 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.724|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.725|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.728|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.729|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.730|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.731|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.732|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.733|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.734|65|483229 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.735|65|66068 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.736|65|1700559 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.737|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.738|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.739|65|60 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.740|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.741|65|51541 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.742|65|36681 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.744|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.745|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.746|65|109644 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.747|65|390 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.748|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.749|65|458520 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.750|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.751|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.9.5.4076.752|65|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.1|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.2|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.3|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.4|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.10|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.11|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.13|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.16|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.17|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.18|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.22|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.23|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.24|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.28|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.30|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.31|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.53|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.57|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.59|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.64|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.66|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.67|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.68|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.69|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.70|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.71|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.73|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.77|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.78|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.79|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.80|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.81|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.83|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.84|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.85|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.87|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.88|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.89|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.92|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.93|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.94|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.96|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.97|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.101|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.104|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.107|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.111|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.140|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.143|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.155|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.156|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.157|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.158|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.160|66|43 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.161|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.162|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.166|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.167|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.169|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.170|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.180|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.181|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.190|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.191|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.193|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.195|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.200|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.201|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.202|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.203|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.210|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.211|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.212|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.214|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.215|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.216|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.217|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.218|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.219|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.220|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.223|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.225|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.228|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.234|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.235|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.238|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.244|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.246|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.247|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.248|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.249|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.252|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.257|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.258|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.259|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.263|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.264|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.265|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.266|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.267|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.269|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.272|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.274|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.286|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.288|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.289|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.290|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.292|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.294|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.295|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.297|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.299|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.302|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.303|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.304|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.305|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.306|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.308|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.309|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.327|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.329|66|7 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.337|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.342|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.343|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.344|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.345|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.348|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.349|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.350|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.351|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.352|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.355|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.356|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.359|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.360|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.361|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.367|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.371|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.373|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.374|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.375|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.379|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.380|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.381|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.382|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.383|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.385|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.386|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.388|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.390|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.392|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.394|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.395|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.396|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.398|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.399|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.403|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.406|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.407|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.409|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.410|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.411|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.412|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.417|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.421|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.424|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.431|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.433|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.434|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.438|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.439|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.444|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.458|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.463|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.465|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.466|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.478|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.479|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.481|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.488|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.489|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.491|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.492|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.495|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.496|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.497|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.498|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.499|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.500|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.504|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.507|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.508|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.509|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.510|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.511|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.512|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.516|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.517|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.518|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.520|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.522|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.523|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.527|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.532|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.534|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.540|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.541|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.542|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.547|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.549|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.550|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.554|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.555|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.556|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.558|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.560|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.561|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.563|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.566|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.571|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.572|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.574|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.575|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.578|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.579|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.580|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.581|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.582|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.583|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.584|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.585|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.587|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.588|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.592|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.593|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.594|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.596|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.600|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.601|66|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.602|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.603|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.604|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.605|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.608|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.609|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.610|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.611|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.612|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.613|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.614|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.615|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.617|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.618|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.619|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.620|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.621|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.622|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.623|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.624|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.625|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.626|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.627|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.628|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.629|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.630|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.631|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.632|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.633|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.634|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.635|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.641|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.642|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.643|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.649|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.652|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.653|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.719|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.720|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.721|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.723|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.724|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.734|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.735|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.736|66|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.737|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.739|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.740|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.741|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.742|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.746|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.747|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.749|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.750|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.751|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.10.5.4076.752|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.1|70|5205288 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.2|70|43648 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.3|70|5024 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.4|70|21210664 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.5|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.6|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.7|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.8|70|65632 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.9|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.10|70|8736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.11|70|5266003672 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.12|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.13|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.14|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.15|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.16|70|3098877992 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.17|70|10448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.18|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.19|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.20|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.21|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.22|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.23|70|621752 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.24|70|103416 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.25|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.26|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.27|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.28|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.29|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.30|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.31|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.32|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.33|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.34|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.35|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.36|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.37|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.38|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.39|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.40|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.41|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.42|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.43|70|2192 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.44|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.45|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.46|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.47|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.48|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.49|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.50|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.51|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.52|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.53|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.54|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.55|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.56|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.57|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.58|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.59|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.60|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.61|70|3224 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.62|70|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.63|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.64|70|2677776 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.65|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.66|70|1964144 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.67|70|232960 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.68|70|36472 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.69|70|303816 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.70|70|41176 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.71|70|116680 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.72|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.73|70|108678280 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.74|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.75|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.76|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.77|70|332272 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.78|70|7856 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.79|70|25466288 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.80|70|1024 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.81|70|16818160 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.82|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.83|70|10659672 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.84|70|459208 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.85|70|412796696 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.86|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.87|70|10544 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.88|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.89|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.90|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.91|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.92|70|2359950000 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.93|70|9280 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.94|70|66312 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.95|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.96|70|147426736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.97|70|4503562064 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.98|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.99|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.100|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.101|70|1968 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.102|70|2176 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.103|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.104|70|5408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.105|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.106|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.107|70|2004824 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.108|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.109|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.110|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.111|70|632 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.112|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.113|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.114|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.115|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.116|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.117|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.118|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.119|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.120|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.121|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.122|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.123|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.124|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.125|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.126|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.127|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.128|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.129|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.130|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.131|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.132|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.133|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.134|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.135|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.136|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.137|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.138|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.139|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.140|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.141|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.142|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.143|70|261270896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.144|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.145|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.146|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.147|70|6864 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.148|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.149|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.150|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.151|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.152|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.153|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.154|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.155|70|43592 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.156|70|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.157|70|15048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.158|70|211824 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.159|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.160|70|188615803184 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.161|70|271288 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.162|70|75051200 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.163|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.164|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.165|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.166|70|15696 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.167|70|576 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.168|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.169|70|18000 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.170|70|20088 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.171|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.172|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.173|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.174|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.175|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.176|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.177|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.178|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.179|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.180|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.181|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.182|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.183|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.184|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.185|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.186|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.187|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.188|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.189|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.190|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.191|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.192|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.193|70|2650796000 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.194|70|3472 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.195|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.196|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.197|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.198|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.199|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.200|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.201|70|10800848 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.202|70|71400 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.203|70|405016 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.204|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.205|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.206|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.207|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.208|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.209|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.210|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.211|70|6400 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.212|70|37714272 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.213|70|26864 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.214|70|164600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.215|70|3874832 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.216|70|3392 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.217|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.218|70|704 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.219|70|10191480 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.220|70|17128 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.221|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.222|70|98736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.223|70|467951424 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.224|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.225|70|37424 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.226|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.227|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.228|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.229|70|3448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.230|70|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.231|70|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.232|70|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.233|70|45576 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.234|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.235|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.236|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.237|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.238|70|1015040 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.239|70|66064 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.240|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.241|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.242|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.243|70|143056 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.244|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.245|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.246|70|4634835456 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.247|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.248|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.249|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.250|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.251|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.252|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.253|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.254|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.255|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.256|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.257|70|880 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.258|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.259|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.260|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.261|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.262|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.263|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.264|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.265|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.266|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.267|70|2600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.268|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.269|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.270|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.271|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.272|70|190488944 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.273|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.274|70|19568 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.275|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.276|70|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.277|70|3152 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.278|70|3344 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.279|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.280|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.281|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.282|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.283|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.284|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.285|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.286|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.287|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.288|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.289|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.290|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.291|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.292|70|410808 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.293|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.294|70|1776 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.295|70|3720 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.296|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.297|70|2432 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.298|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.299|70|10160 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.300|70|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.301|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.302|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.303|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.304|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.305|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.306|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.307|70|98736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.308|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.309|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.310|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.311|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.312|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.313|70|153728 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.314|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.315|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.316|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.317|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.318|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.319|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.320|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.321|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.322|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.323|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.324|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.325|70|100600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.326|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.327|70|790144 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.328|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.329|70|33888626880 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.330|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.331|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.332|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.333|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.334|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.335|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.336|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.337|70|37608 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.338|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.339|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.340|70|20448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.341|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.342|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.343|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.344|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.345|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.346|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.347|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.348|70|1440 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.349|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.350|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.351|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.352|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.353|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.354|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.355|70|1363168 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.356|70|167960 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.357|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.358|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.359|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.360|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.361|70|177608 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.362|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.363|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.364|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.365|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.366|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.367|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.368|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.369|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.370|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.371|70|6816 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.372|70|3008 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.373|70|4280 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.374|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.375|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.376|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.377|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.378|70|27200 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.379|70|135936 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.380|70|66184 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.381|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.382|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.383|70|942256 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.384|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.385|70|59720 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.386|70|720 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.387|70|1824 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.388|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.389|70|640 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.390|70|20312 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.391|70|976 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.392|70|18368 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.393|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.394|70|200 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.395|70|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.396|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.397|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.398|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.399|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.400|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.401|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.402|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.403|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.404|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.405|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.406|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.407|70|880 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.408|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.409|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.410|70|67809104 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.411|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.412|70|38912 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.413|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.414|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.415|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.416|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.417|70|56024 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.418|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.419|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.420|70|3440 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.421|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.422|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.423|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.424|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.425|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.426|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.427|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.428|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.429|70|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.430|70|16680 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.431|70|9016 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.432|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.433|70|17128 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.434|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.435|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.436|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.437|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.438|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.439|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.440|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.441|70|140184 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.442|70|4256 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.443|70|3800 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.444|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.445|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.446|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.447|70|98744 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.448|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.449|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.450|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.451|70|65576 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.452|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.453|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.454|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.455|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.456|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.457|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.458|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.459|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.460|70|760 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.461|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.462|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.463|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.464|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.465|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.466|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.467|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.468|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.469|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.470|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.471|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.472|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.473|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.474|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.475|70|4392 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.476|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.477|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.478|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.479|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.480|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.481|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.482|70|67928 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.483|70|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.484|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.485|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.486|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.487|70|7056 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.488|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.489|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.490|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.491|70|9048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.492|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.493|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.494|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.495|70|101160 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.496|70|36992 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.497|70|1800 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.498|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.499|70|50664 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.500|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.501|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.502|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.503|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.504|70|2328 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.505|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.506|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.507|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.508|70|16128 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.509|70|13456 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.510|70|2432 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.511|70|4192 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.512|70|6728 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.513|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.514|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.515|70|102888 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.516|70|283040 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.517|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.518|70|44592 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.519|70|1928 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.520|70|3408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.521|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.522|70|99192 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.523|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.524|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.525|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.526|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.527|70|36999280 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.528|70|8016 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.529|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.530|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.531|70|3424 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.532|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.533|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.534|70|14344 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.535|70|696632 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.536|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.537|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.538|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.539|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.540|70|275784 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.541|70|4605952 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.542|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.543|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.544|70|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.545|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.546|70|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.547|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.548|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.549|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.550|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.551|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.552|70|456 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.553|70|2048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.554|70|11300896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.555|70|3272 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.556|70|362256 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.557|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.558|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.559|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.560|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.561|70|68712 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.562|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.563|70|9240 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.564|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.565|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.566|70|9048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.567|70|432 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.568|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.569|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.570|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.571|70|19136 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.572|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.573|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.574|70|7912 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.575|70|77078056 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.576|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.577|70|4496 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.578|70|9656 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.579|70|31232 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.580|70|4291832 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.581|70|398488 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.582|70|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.583|70|18080 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.584|70|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.585|70|18512 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.586|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.587|70|24064 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.588|70|150085352 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.589|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.590|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.591|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.592|70|76070576 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.593|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.594|70|2384 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.595|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.596|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.597|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.598|70|1824 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.599|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.600|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.601|70|17126286448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.602|70|100825856 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.603|70|384872 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.604|70|6742408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.605|70|5338536 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.606|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.607|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.608|70|4510664 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.609|70|30912 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.610|70|6288 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.611|70|17008 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.612|70|6888 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.613|70|3175696 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.614|70|294144 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.615|70|40728 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.616|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.617|70|159312 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.618|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.619|70|20704 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.620|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.621|70|93960 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.622|70|108264 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.623|70|18752 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.624|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.625|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.626|70|18032 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.627|70|4322648 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.628|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.629|70|48848 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.630|70|26440 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.631|70|46320 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.632|70|24136 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.633|70|53336 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.634|70|54472 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.635|70|78816560 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.636|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.637|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.638|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.639|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.640|70|3008 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.641|70|17840 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.642|70|6608 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.643|70|35801184 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.644|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.645|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.646|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.647|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.648|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.649|70|1015167688 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.650|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.651|70|408 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.652|70|76048 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.653|70|314632 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.654|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.655|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.656|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.657|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.658|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.659|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.660|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.661|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.662|70|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.663|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.664|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.665|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.666|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.667|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.668|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.669|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.670|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.671|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.672|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.673|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.674|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.675|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.676|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.677|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.678|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.679|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.680|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.681|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.682|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.683|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.684|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.685|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.686|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.687|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.688|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.689|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.690|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.691|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.692|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.693|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.694|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.695|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.696|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.697|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.698|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.699|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.700|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.701|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.702|70|8600 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.703|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.704|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.705|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.706|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.707|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.708|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.709|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.710|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.711|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.712|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.713|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.714|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.715|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.716|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.717|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.718|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.719|70|34427968 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.720|70|167912 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.721|70|3548896 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.722|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.723|70|31836760 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.724|70|4224 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.725|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.728|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.729|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.730|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.731|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.732|70|3904 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.733|70|3200 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.734|70|205704 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.735|70|6917899384 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.736|70|10623903496 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.737|70|1936 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.738|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.739|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.740|70|132104 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.741|70|507755952 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.742|70|65432 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.744|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.745|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.746|70|238928 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.747|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.748|70|3720 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.749|70|245983568 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.750|70|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.751|70|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.11.5.4076.752|70|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.1|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.2|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.3|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.4|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.5|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.6|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.7|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.8|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.9|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.10|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.11|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.12|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.13|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.14|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.15|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.16|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.17|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.18|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.19|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.20|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.21|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.22|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.23|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.24|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.25|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.26|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.27|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.28|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.29|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.30|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.31|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.32|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.33|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.34|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.35|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.36|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.37|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.38|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.39|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.40|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.41|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.42|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.43|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.44|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.45|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.46|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.47|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.48|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.49|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.50|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.51|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.52|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.53|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.54|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.55|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.56|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.57|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.58|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.59|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.60|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.61|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.62|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.63|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.64|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.65|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.66|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.67|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.68|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.69|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.70|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.71|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.72|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.73|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.74|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.75|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.76|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.77|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.78|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.79|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.80|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.81|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.82|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.83|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.84|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.85|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.86|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.87|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.88|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.89|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.90|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.91|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.92|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.93|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.94|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.95|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.96|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.97|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.98|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.99|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.100|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.101|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.102|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.103|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.104|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.105|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.106|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.107|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.108|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.109|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.110|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.111|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.112|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.113|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.114|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.115|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.116|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.117|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.118|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.119|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.120|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.121|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.122|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.123|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.124|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.125|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.126|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.127|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.128|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.129|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.130|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.131|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.132|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.133|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.134|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.135|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.136|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.137|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.138|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.139|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.140|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.141|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.142|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.143|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.144|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.145|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.146|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.147|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.148|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.149|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.150|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.151|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.152|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.153|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.154|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.155|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.156|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.157|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.158|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.159|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.160|66|43 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.161|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.162|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.163|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.164|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.165|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.166|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.167|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.168|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.169|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.170|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.171|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.172|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.173|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.174|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.175|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.176|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.177|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.178|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.179|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.180|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.181|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.182|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.183|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.184|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.185|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.186|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.187|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.188|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.189|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.190|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.191|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.192|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.193|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.194|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.195|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.196|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.197|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.198|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.199|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.200|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.201|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.202|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.203|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.204|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.205|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.206|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.207|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.208|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.209|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.210|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.211|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.212|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.213|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.214|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.215|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.216|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.217|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.218|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.219|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.220|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.221|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.222|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.223|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.224|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.225|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.226|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.227|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.228|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.229|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.230|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.231|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.232|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.233|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.234|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.235|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.236|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.237|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.238|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.239|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.240|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.241|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.242|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.243|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.244|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.245|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.246|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.247|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.248|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.249|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.250|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.251|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.252|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.253|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.254|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.255|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.256|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.257|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.258|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.259|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.260|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.261|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.262|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.263|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.264|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.265|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.266|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.267|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.268|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.269|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.270|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.271|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.272|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.273|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.274|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.275|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.276|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.277|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.278|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.279|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.280|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.281|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.282|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.283|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.284|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.285|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.286|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.287|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.288|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.289|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.290|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.291|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.292|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.293|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.294|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.295|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.296|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.297|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.298|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.299|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.300|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.301|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.302|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.303|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.304|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.305|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.306|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.307|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.308|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.309|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.310|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.311|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.312|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.313|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.314|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.315|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.316|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.317|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.318|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.319|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.320|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.321|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.322|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.323|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.324|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.325|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.326|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.327|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.328|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.329|66|5 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.330|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.331|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.332|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.333|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.334|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.335|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.336|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.337|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.338|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.339|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.340|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.341|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.342|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.343|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.344|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.345|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.346|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.347|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.348|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.349|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.350|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.351|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.352|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.353|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.354|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.355|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.356|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.357|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.358|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.359|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.360|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.361|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.362|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.363|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.364|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.365|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.366|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.367|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.368|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.369|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.370|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.371|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.372|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.373|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.374|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.375|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.376|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.377|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.378|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.379|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.380|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.381|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.382|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.383|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.384|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.385|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.386|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.387|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.388|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.389|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.390|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.391|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.392|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.393|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.394|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.395|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.396|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.397|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.398|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.399|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.400|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.401|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.402|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.403|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.404|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.405|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.406|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.407|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.408|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.409|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.410|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.411|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.412|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.413|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.414|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.415|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.416|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.417|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.418|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.419|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.420|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.421|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.422|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.423|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.424|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.425|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.426|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.427|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.428|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.429|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.430|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.431|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.432|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.433|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.434|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.435|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.436|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.437|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.438|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.439|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.440|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.441|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.442|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.443|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.444|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.445|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.446|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.447|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.448|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.449|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.450|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.451|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.452|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.453|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.454|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.455|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.456|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.457|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.458|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.459|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.460|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.461|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.462|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.463|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.464|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.465|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.466|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.467|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.468|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.469|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.470|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.471|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.472|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.473|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.474|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.475|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.476|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.477|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.478|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.479|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.480|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.481|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.482|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.483|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.484|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.485|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.486|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.487|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.488|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.489|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.490|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.491|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.492|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.493|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.494|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.495|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.496|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.497|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.498|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.499|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.500|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.501|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.502|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.503|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.504|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.505|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.506|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.507|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.508|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.509|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.510|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.511|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.512|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.513|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.514|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.515|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.516|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.517|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.518|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.519|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.520|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.521|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.522|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.523|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.524|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.525|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.526|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.527|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.528|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.529|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.530|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.531|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.532|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.533|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.534|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.535|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.536|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.537|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.538|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.539|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.540|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.541|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.542|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.543|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.544|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.545|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.546|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.547|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.548|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.549|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.550|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.551|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.552|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.553|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.554|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.555|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.556|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.557|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.558|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.559|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.560|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.561|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.562|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.563|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.564|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.565|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.566|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.567|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.568|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.569|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.570|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.571|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.572|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.573|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.574|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.575|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.576|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.577|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.578|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.579|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.580|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.581|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.582|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.583|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.584|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.585|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.586|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.587|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.588|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.589|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.590|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.591|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.592|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.593|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.594|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.595|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.596|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.597|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.598|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.599|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.600|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.601|66|3 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.602|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.603|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.604|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.605|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.606|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.607|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.608|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.609|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.610|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.611|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.612|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.613|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.614|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.615|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.616|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.617|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.618|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.619|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.620|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.621|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.622|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.623|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.624|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.625|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.626|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.627|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.628|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.629|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.630|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.631|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.632|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.633|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.634|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.635|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.636|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.637|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.638|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.639|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.640|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.641|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.642|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.643|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.644|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.645|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.646|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.647|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.648|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.649|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.650|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.651|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.652|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.653|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.654|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.655|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.656|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.657|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.658|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.659|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.660|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.661|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.662|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.663|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.664|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.665|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.666|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.667|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.668|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.669|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.670|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.671|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.672|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.673|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.674|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.675|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.676|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.677|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.678|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.679|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.680|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.681|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.682|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.683|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.684|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.685|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.686|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.687|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.688|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.689|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.690|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.691|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.692|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.693|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.694|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.695|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.696|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.697|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.698|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.699|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.700|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.701|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.702|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.703|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.704|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.705|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.706|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.707|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.708|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.709|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.710|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.711|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.712|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.713|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.714|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.715|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.716|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.717|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.718|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.719|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.720|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.721|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.722|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.723|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.724|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.725|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.728|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.729|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.730|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.731|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.732|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.733|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.734|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.735|66|1 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.736|66|2 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.737|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.738|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.739|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.740|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.741|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.742|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.744|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.745|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.746|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.747|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.748|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.749|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.750|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.751|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.12.5.4076.752|66|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.1|70|2489936 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.2|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.3|70|2832 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.4|70|100016 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.5|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.6|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.7|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.8|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.9|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.10|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.11|70|5266045408 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.12|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.13|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.14|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.15|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.16|70|3098784088 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.17|70|10232 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.18|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.19|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.20|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.21|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.22|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.23|70|4664 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.24|70|103416 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.25|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.26|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.27|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.28|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.29|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.30|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.31|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.32|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.33|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.34|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.35|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.36|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.37|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.38|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.39|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.40|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.41|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.42|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.43|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.44|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.45|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.46|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.47|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.48|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.49|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.50|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.51|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.52|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.53|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.54|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.55|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.56|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.57|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.58|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.59|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.60|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.61|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.62|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.63|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.64|70|648582312 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.65|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.66|70|2213024 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.67|70|262784 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.68|70|32648 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.69|70|188400 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.70|70|36712 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.71|70|1864 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.72|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.73|70|108678280 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.74|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.75|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.76|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.77|70|21736 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.78|70|4288 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.79|70|25466288 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.80|70|2440 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.81|70|11221872 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.82|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.83|70|5208280 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.84|70|29890736 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.85|70|409207536 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.86|70|1720 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.87|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.88|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.89|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.90|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.91|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.92|70|2223141168 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.93|70|9280 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.94|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.95|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.96|70|147400440 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.97|70|4503573824 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.98|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.99|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.100|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.101|70|560 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.102|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.103|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.104|70|3104 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.105|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.106|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.107|70|24728 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.108|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.109|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.110|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.111|70|2920 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.112|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.113|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.114|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.115|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.116|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.117|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.118|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.119|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.120|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.121|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.122|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.123|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.124|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.125|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.126|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.127|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.128|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.129|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.130|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.131|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.132|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.133|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.134|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.135|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.136|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.137|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.138|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.139|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.140|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.141|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.142|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.143|70|24921016 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.144|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.145|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.146|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.147|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.148|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.149|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.150|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.151|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.152|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.153|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.154|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.155|70|78736 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.156|70|288 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.157|70|56104 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.158|70|596112 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.159|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.160|70|188411082504 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.161|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.162|70|75504720 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.163|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.164|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.165|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.166|70|16680 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.167|70|576 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.168|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.169|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.170|70|794359192 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.171|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.172|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.173|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.174|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.175|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.176|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.177|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.178|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.179|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.180|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.181|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.182|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.183|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.184|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.185|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.186|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.187|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.188|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.189|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.190|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.191|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.192|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.193|70|2650798992 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.194|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.195|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.196|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.197|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.198|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.199|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.200|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.201|70|1545312 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.202|70|29608 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.203|70|3737960 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.204|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.205|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.206|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.207|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.208|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.209|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.210|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.211|70|3744 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.212|70|37374584 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.213|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.214|70|172536 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.215|70|3694136 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.216|70|160 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.217|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.218|70|360 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.219|70|461104 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.220|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.221|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.222|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.223|70|182492832 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.224|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.225|70|1120 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.226|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.227|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.228|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.229|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.230|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.231|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.232|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.233|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.234|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.235|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.236|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.237|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.238|70|416 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.239|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.240|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.241|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.242|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.243|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.244|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.245|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.246|70|4519065744 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.247|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.248|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.249|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.250|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.251|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.252|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.253|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.254|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.255|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.256|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.257|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.258|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.259|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.260|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.261|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.262|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.263|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.264|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.265|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.266|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.267|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.268|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.269|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.270|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.271|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.272|70|190488944 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.273|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.274|70|1096 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.275|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.276|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.277|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.278|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.279|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.280|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.281|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.282|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.283|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.284|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.285|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.286|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.287|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.288|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.289|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.290|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.291|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.292|70|144 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.293|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.294|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.295|70|328 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.296|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.297|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.298|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.299|70|19008 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.300|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.301|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.302|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.303|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.304|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.305|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.306|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.307|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.308|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.309|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.310|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.311|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.312|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.313|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.314|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.315|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.316|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.317|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.318|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.319|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.320|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.321|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.322|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.323|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.324|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.325|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.326|70|156113112 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.327|70|532144 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.328|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.329|70|25086876192 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.330|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.331|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.332|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.333|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.334|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.335|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.336|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.337|70|23224 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.338|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.339|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.340|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.341|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.342|70|3268112 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.343|70|656 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.344|70|36912 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.345|70|592 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.346|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.347|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.348|70|124832 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.349|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.350|70|664 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.351|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.352|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.353|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.354|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.355|70|5064 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.356|70|1741920 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.357|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.358|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.359|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.360|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.361|70|907624 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.362|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.363|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.364|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.365|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.366|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.367|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.368|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.369|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.370|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.371|70|3520 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.372|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.373|70|888 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.374|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.375|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.376|70|1646264 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.377|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.378|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.379|70|136520 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.380|70|608 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.381|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.382|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.383|70|53696 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.384|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.385|70|58688 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.386|70|312 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.387|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.388|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.389|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.390|70|5568 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.391|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.392|70|18368 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.393|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.394|70|200 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.395|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.396|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.397|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.398|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.399|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.400|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.401|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.402|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.403|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.404|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.405|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.406|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.407|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.408|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.409|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.410|70|67809248 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.411|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.412|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.413|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.414|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.415|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.416|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.417|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.418|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.419|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.420|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.421|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.422|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.423|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.424|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.425|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.426|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.427|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.428|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.429|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.430|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.431|70|400 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.432|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.433|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.434|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.435|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.436|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.437|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.438|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.439|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.440|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.441|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.442|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.443|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.444|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.445|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.446|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.447|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.448|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.449|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.450|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.451|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.452|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.453|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.454|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.455|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.456|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.457|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.458|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.459|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.460|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.461|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.462|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.463|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.464|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.465|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.466|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.467|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.468|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.469|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.470|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.471|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.472|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.473|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.474|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.475|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.476|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.477|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.478|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.479|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.480|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.481|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.482|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.483|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.484|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.485|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.486|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.487|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.488|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.489|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.490|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.491|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.492|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.493|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.494|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.495|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.496|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.497|70|736 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.498|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.499|70|6544 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.500|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.501|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.502|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.503|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.504|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.505|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.506|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.507|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.508|70|9880 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.509|70|13456 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.510|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.511|70|1352 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.512|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.513|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.514|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.515|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.516|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.517|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.518|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.519|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.520|70|1392 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.521|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.522|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.523|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.524|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.525|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.526|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.527|70|36997648 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.528|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.529|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.530|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.531|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.532|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.533|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.534|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.535|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.536|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.537|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.538|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.539|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.540|70|275784 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.541|70|3451152 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.542|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.543|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.544|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.545|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.546|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.547|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.548|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.549|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.550|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.551|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.552|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.553|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.554|70|11301040 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.555|70|5512 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.556|70|808 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.557|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.558|70|1096 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.559|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.560|70|1016 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.561|70|27776 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.562|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.563|70|11128 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.564|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.565|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.566|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.567|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.568|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.569|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.570|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.571|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.572|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.573|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.574|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.575|70|317584240 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.576|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.577|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.578|70|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.579|70|6088 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.580|70|193592 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.581|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.582|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.583|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.584|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.585|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.586|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.587|70|24064 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.588|70|150085352 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.589|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.590|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.591|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.592|70|76059792 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.593|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.594|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.595|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.596|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.597|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.598|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.599|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.600|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.601|70|16968737392 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.602|70|170497192 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.603|70|152 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.604|70|5045792 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.605|70|5336680 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.606|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.607|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.608|70|4650600 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.609|70|936 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.610|70|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.611|70|21264 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.612|70|464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.613|70|1251392 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.614|70|138496 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.615|70|1792 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.616|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.617|70|122776 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.618|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.619|70|10032 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.620|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.621|70|84160 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.622|70|123032 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.623|70|10304 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.624|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.625|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.626|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.627|70|4310968 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.628|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.629|70|39568 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.630|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.631|70|36880 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.632|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.633|70|37480 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.634|70|45528 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.635|70|78813008 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.636|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.637|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.638|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.639|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.640|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.641|70|9464 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.642|70|896 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.643|70|6383200 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.644|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.645|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.646|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.647|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.648|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.649|70|961189440 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.650|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.651|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.652|70|53816 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.653|70|233544 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.654|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.655|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.656|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.657|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.658|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.659|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.660|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.661|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.662|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.663|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.664|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.665|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.666|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.667|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.668|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.669|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.670|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.671|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.672|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.673|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.674|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.675|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.676|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.677|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.678|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.679|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.680|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.681|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.682|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.683|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.684|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.685|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.686|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.687|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.688|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.689|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.690|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.691|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.692|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.693|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.694|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.695|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.696|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.697|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.698|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.699|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.700|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.701|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.702|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.703|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.704|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.705|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.706|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.707|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.708|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.709|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.710|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.711|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.712|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.713|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.714|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.715|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.716|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.717|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.718|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.719|70|51840 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.720|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.721|70|10160 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.722|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.723|70|146560240 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.724|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.725|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.728|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.729|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.730|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.731|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.732|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.733|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.734|70|1424 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.735|70|5814833512 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.736|70|11811541328 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.737|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.738|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.739|70|1914592 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.740|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.741|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.742|70|8776 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.744|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.745|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.746|70|203616 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.747|70|448 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.748|70|0 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.749|70|130610976 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.750|70|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.751|70|552 +1.3.6.1.4.1.9.9.109.1.4.1.1.13.5.4076.752|70|552 +1.3.6.1.4.1.9.9.117.1.1.2.1.1.4|2|1 +1.3.6.1.4.1.9.9.117.1.1.2.1.2.4|2|2 +1.3.6.1.4.1.9.9.117.1.1.2.1.3.4|2|0 +1.3.6.1.4.1.9.9.117.1.3.1.0|2|2 +1.3.6.1.4.1.9.9.117.1.3.2.0|2|2 +1.3.6.1.4.1.9.9.122.1.1.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.122.1.1.1.1.3.1|2|2 +1.3.6.1.4.1.9.9.122.1.1.1.1.4.1|64x|00000000 +1.3.6.1.4.1.9.9.122.1.1.1.1.5.1|64x|00000000 +1.3.6.1.4.1.9.9.122.1.1.1.1.6.1|64x|00000000 +1.3.6.1.4.1.9.9.122.1.1.1.1.7.1|64x|00000000 +1.3.6.1.4.1.9.9.122.1.1.1.1.8.1|64x|00000000 +1.3.6.1.4.1.9.9.122.1.1.1.1.9.1|64x|00000000 +1.3.6.1.4.1.9.9.126.1.8.1.0|2|2 +1.3.6.1.4.1.9.9.128.1.1.1.1.3.1.0|2|10 +1.3.6.1.4.1.9.9.128.1.1.1.1.3.52.0|2|11 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.1|6|1.3.6.1.4.1.9.12.3.1.5.115 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.2|6|1.3.6.1.4.1.9.12.3.1.5.185 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.3|6|1.3.6.1.4.1.9.12.3.1.8.31 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.4|6|1.3.6.1.4.1.9.12.3.1.8.45 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.5|6|1.3.6.1.4.1.9.12.3.1.8.61 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.6|6|1.3.6.1.4.1.9.12.3.1.8.133 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.7|6|1.3.6.1.4.1.9.12.3.1.8.132 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.8|6|1.3.6.1.4.1.9.12.3.1.8.134 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.9|6|1.3.6.1.4.1.9.12.3.1.8 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.10|6|1.3.6.1.4.1.9.12.3.1.9.68.96 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.11|6|1.3.6.1.4.1.9.12.3.1.9.68.97 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.12|6|1.3.6.1.4.1.9.12.3.1.6.690 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.13|6|1.3.6.1.4.1.9.12.3.1.7.375 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.14|6|1.3.6.1.4.1.9.12.3.1.9.68.95 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.15|6|1.3.6.1.4.1.9.12.3.1.5.333 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.16|6|1.3.6.1.4.1.9.12.3.1.10.109 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.17|6|1.3.6.1.4.1.9.12.3.1.9.68.104 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.18|6|1.3.6.1.4.1.9.12.3.1.9.68.106 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.19|6|1.3.6.1.4.1.9.12.3.1.10.373 +1.3.6.1.4.1.9.9.138.1.1.1.1.2.20|6|1.3.6.1.4.1.9.12.3.1.10.304 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.1.0|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.1.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.1.2|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.1.3|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.2.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.2.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.2.2|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.3.9|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.9|2|0 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.4.10|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.5.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.6.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.7.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.8.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.2|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.4|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.9.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.0|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.3|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.4|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.10.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.0|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.3|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.4|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.11.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.12.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.12.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.12.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.12.3|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.12.4|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.13.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.13.20|2|0 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.0|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.3|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.4|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.7|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.8|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.9|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.10|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.11|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.14.12|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.15.0|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.15.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.16.0|2|0 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.16.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.16.2|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.16.3|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.0|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.3|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.4|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.17.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.0|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.1|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.2|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.3|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.4|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.5|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.6|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.7|2|2 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.18.8|2|3 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.19.0|2|0 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.19.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.19.2|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.19.3|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.20.0|2|0 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.20.1|2|1 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.20.2|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.2.20.3|2|4 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.1.0|4x|5472616e73636569766572204d697373696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.1.1|4x|5472616e73636569766572204d697373696e67202d204c696e6b20446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.1.2|4x|5472616e7363656976657220496d70726f7065722052656d6f76616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.1.3|4x|5472616e73636569766572204d69736d61746368 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.2.0|4x|506f77657220537570706c792f46414e204d6f64756c65204d697373696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.2.1|4x|506f77657220537570706c792f46414e204d6f64756c65204d697373696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.2.2|4x|506f77657220537570706c792f46414e204d6f64756c65204d697373696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.0|4x|4661756c74792054656d70657261747572652053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.1|4x|54656d702041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.2|4x|54656d702041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.3|4x|54656d702041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.4|4x|54656d702041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.5|4x|54656d702042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.6|4x|54656d702042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.7|4x|54656d702042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.8|4x|54656d702042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.3.9|4x|434845434b20464f52204f50454e20534c4f5453202620424c4f434b45442041495220494e54414b45 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.0|4x|4661756c747920566f6c746167652053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.1|4x|566f6c742041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.2|4x|566f6c742041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.3|4x|566f6c742041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.4|4x|566f6c742041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.5|4x|566f6c742042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.6|4x|566f6c742042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.7|4x|566f6c742042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.8|4x|566f6c742062656c6f77206e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.9|4|NA +1.3.6.1.4.1.9.9.138.1.1.2.1.3.4.10|4x|566f6c74204f7574206f662052616e6765 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.0|4x|4661756c747920416d706572652053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.1|4x|416d706572652041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.2|4x|416d706572652041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.3|4x|416d706572652041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.4|4x|416d706572652041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.5|4x|416d706572652042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.6|4x|416d706572652042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.7|4x|416d706572652042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.5.8|4x|416d706572652042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.0|4x|4661756c74792046616e20526f746174696f6e2053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.1|4x|52504d2041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.2|4x|52504d2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.3|4x|52504d2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.4|4x|52504d2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.5|4x|52504d2042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.6|4x|52504d2042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.7|4x|52504d2042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.6.8|4x|52504d2062656c6f77206e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.0|4x|4661756c747920506f7765722053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.1|4x|57617474732041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.2|4x|57617474732041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.3|4x|57617474732041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.4|4x|57617474732041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.5|4x|57617474732042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.6|4x|57617474732042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.7|4x|57617474732042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.7.8|4x|57617474732062656c6f77206e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.0|4x|4661756c74792050726573737572652053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.1|4x|50617363616c2041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.2|4x|50617363616c2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.3|4x|50617363616c2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.4|4x|50617363616c2041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.5|4x|50617363616c2042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.6|4x|50617363616c2042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.7|4x|50617363616c2042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.8.8|4x|50617363616c2062656c6f77206e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.0|4x|4661756c74792053656e736f72 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.1|4x|52656164696e672041626f7665204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.2|4x|52656164696e672041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.3|4x|52656164696e672041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.4|4x|52656164696e672041626f7665204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.5|4x|52656164696e672042656c6f77204e6f726d616c202853687574646f776e29 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.6|4x|52656164696e672042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.7|4x|52656164696e672042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.9.8|4x|52656164696e672042656c6f77204e6f726d616c +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.0|4x|556e6b6e6f776e207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.1|4x|426f6f74207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.2|4|Disabled +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.3|4|Incompatible +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.4|4x|43504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.5|4x|4163746976652052502043504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.6|4|Failed +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.7|4|Stopped +1.3.6.1.4.1.9.9.138.1.1.2.1.3.10.8|4|MDR +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.0|4x|556e6b6e6f776e207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.1|4x|426f6f74207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.2|4|Disabled +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.3|4|Incompatible +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.4|4x|43504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.5|4x|4163746976652052502043504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.6|4|Failed +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.7|4|Stopped +1.3.6.1.4.1.9.9.138.1.1.2.1.3.11.8|4|MDR +1.3.6.1.4.1.9.9.138.1.1.2.1.3.12.0|4x|506f77657220537570706c79204661696c757265 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.12.1|4x|506f776572204e6f7420456e6f756768 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.12.2|4x|506f77657220537570706c792046616e204661756c74 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.12.3|4x|444320506f77657220496e7075742041204c6f7374 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.12.4|4x|444320506f77657220496e7075742042204c6f7374 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.13.0|4x|46616e20547261792f4d6f64756c65204661696c757265 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.13.20|4|NA +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.0|4x|556e6b6e6f776e207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.1|4x|426f6f74207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.2|4|Disabled +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.3|4|Incompatible +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.4|4x|43504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.5|4x|4163746976652052502043504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.6|4|Failed +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.7|4|Cutover +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.8|4x|5365636f6e64617279206661696c757265 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.9|4x|5365636f6e646172792072656d6f766564 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.10|4x|5365636f6e64617279206e6f742073796e6368726f6e697a6564 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.11|4x|4e6f20576f726b696e6720455350 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.14.12|4x|486172646469736b204d697373696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.15.0|4x|41637469766520436172642052656d6f766564204f495220416c61726d +1.3.6.1.4.1.9.9.138.1.1.2.1.3.15.1|4x|436172642053746f7070656420526573706f6e64696e67 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.16.0|4|NA +1.3.6.1.4.1.9.9.138.1.1.2.1.3.16.1|4x|506879736963616c20506f7274204c696e6b20446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.16.2|4x|506879736963616c20506f72742041646d696e69737472617469766520537461746520446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.16.3|4x|506879736963616c20506f7274204e6f7420436f6e66696775726564 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.0|4x|556e6b6e6f776e207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.1|4x|426f6f74207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.2|4|Disabled +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.3|4|Incompatible +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.4|4x|43504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.5|4x|4163746976652052502043504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.6|4|Failed +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.7|4|Stopped +1.3.6.1.4.1.9.9.138.1.1.2.1.3.17.8|4|MDR +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.0|4x|556e6b6e6f776e207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.1|4x|426f6f74207374617465 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.2|4|Disabled +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.3|4|Incompatible +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.4|4x|43504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.5|4x|4163746976652052502043504c4420696e636f6d70617469626c65 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.6|4|Failed +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.7|4|Stopped +1.3.6.1.4.1.9.9.138.1.1.2.1.3.18.8|4|MDR +1.3.6.1.4.1.9.9.138.1.1.2.1.3.19.0|4|NA +1.3.6.1.4.1.9.9.138.1.1.2.1.3.19.1|4x|506879736963616c20506f7274204c696e6b20446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.19.2|4x|506879736963616c20506f72742041646d696e69737472617469766520537461746520446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.19.3|4x|506879736963616c20506f7274204e6f7420436f6e66696775726564 +1.3.6.1.4.1.9.9.138.1.1.2.1.3.20.0|4|NA +1.3.6.1.4.1.9.9.138.1.1.2.1.3.20.1|4x|506879736963616c20506f7274204c696e6b20446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.20.2|4x|506879736963616c20506f72742041646d696e69737472617469766520537461746520446f776e +1.3.6.1.4.1.9.9.138.1.1.2.1.3.20.3|4x|506879736963616c20506f7274204e6f7420436f6e66696775726564 +1.3.6.1.4.1.9.9.138.1.2.1.0|66|0 +1.3.6.1.4.1.9.9.138.1.2.2.0|66|0 +1.3.6.1.4.1.9.9.138.1.2.3.0|66|0 +1.3.6.1.4.1.9.9.138.1.2.4.0|2|2 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.3|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.4|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.24|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1000|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1040|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1041|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1042|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1043|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1044|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1280|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1331|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1333|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1343|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.1345|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2000|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2001|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2002|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2003|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2102|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.2104|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.1.3000|66|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.3|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.4|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.24|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1000|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1040|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1041|2|4 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1042|2|4 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1043|2|4 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1044|2|4 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1280|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1331|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1333|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1343|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.1345|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2000|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2001|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2002|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2003|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2102|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.2104|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.2.3000|2|0 +1.3.6.1.4.1.9.9.138.1.2.5.1.3.3|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.4|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.24|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1000|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1040|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1041|4x|04000000000000000000000000000000 +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1042|4x|04000000000000000000000000000000 +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1043|4x|04000000000000000000000000000000 +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1044|4x|04000000000000000000000000000000 +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1280|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1331|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1333|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1343|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.1345|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2000|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2001|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2002|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2003|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2102|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.2104|4| +1.3.6.1.4.1.9.9.138.1.2.5.1.3.3000|4| +1.3.6.1.4.1.9.9.138.1.3.1.0|2|200 +1.3.6.1.4.1.9.9.138.1.3.2.0|66|16 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.1|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.2|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.3|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.4|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.5|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.6|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.7|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.8|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.9|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.10|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.11|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.12|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.13|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.14|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.15|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.2.16|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.1|2|1040 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.2|2|1280 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.3|2|1040 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.4|2|1041 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.5|2|1042 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.6|2|1043 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.7|2|1044 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.8|2|1280 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.9|2|1331 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.10|2|1343 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.11|2|1331 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.12|2|1343 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.13|2|1333 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.14|2|1333 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.15|2|1345 +1.3.6.1.4.1.9.9.138.1.3.3.1.3.16|2|1345 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.1|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.2|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.3|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.4|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.5|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.6|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.7|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.8|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.9|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.10|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.11|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.12|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.13|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.14|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.15|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.4.16|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.1|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.2|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.3|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.4|2|4 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.5|2|4 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.6|2|4 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.7|2|4 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.8|2|2 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.9|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.10|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.11|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.12|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.13|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.14|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.15|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.5.16|2|1 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.1|67|2798 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.2|67|2799 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.3|67|3158 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.4|67|3159 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.5|67|3159 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.6|67|3159 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.7|67|3159 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.8|67|3208 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.9|67|3209 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.10|67|3209 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.11|67|3811 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.12|67|3811 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.13|67|4114 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.14|67|4528 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.15|67|4626 +1.3.6.1.4.1.9.9.138.1.3.3.1.6.16|67|4926 +1.3.6.1.4.1.9.9.138.1.4.1.0|2|4 +1.3.6.1.4.1.9.9.138.1.4.2.0|2|0 +1.3.6.1.4.1.9.9.138.1.4.3.0|66|1 +1.3.6.1.4.1.9.9.146.1.2.2.1.1.115.101.115.115.105.111.110|2|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.2.115.101.115.115.105.111.110|67|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.3.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.4.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.5.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.6.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.7.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.8.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.9.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.10.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.11.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.12.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.13.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.14.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.15.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.16.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.17.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.18.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.19.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.20.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.21.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.22.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.23.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.24.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.25.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.26.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.27.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.28.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.29.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.30.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.31.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.32.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.33.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.34.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.35.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.36.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.37.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.38.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.39.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.40.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.41.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.42.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.43.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.44.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.45.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.46.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.47.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.48.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.49.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.50.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.51.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.52.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.53.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.54.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.55.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.56.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.57.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.58.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.59.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.60.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.61.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.62.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.63.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.64.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.65.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.66.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.67.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.68.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.69.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.70.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.71.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.72.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.73.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.74.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.75.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.76.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.77.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.78.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.79.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.80.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.81.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.82.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.83.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.84.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.2.2.1.85.115.101.115.115.105.111.110|66|0 +1.3.6.1.4.1.9.9.146.1.4.1.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.2.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.3.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.4.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.5.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.6.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.7.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.8.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.9.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.10.0|66|0 +1.3.6.1.4.1.9.9.146.1.4.11.0|2|1 +1.3.6.1.4.1.9.9.146.1.4.12.0|2|1 +1.3.6.1.4.1.9.9.146.1.4.13.0|2|1 +1.3.6.1.4.1.9.9.146.1.4.14.0|2|1 +1.3.6.1.4.1.9.9.146.1.4.15.0|67|0 +1.3.6.1.4.1.9.9.146.1.5.1.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.2.0|67|0 +1.3.6.1.4.1.9.9.146.1.5.3.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.4.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.5.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.6.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.7.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.8.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.9.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.10.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.11.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.12.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.13.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.14.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.15.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.16.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.17.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.18.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.19.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.20.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.21.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.22.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.23.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.24.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.25.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.26.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.27.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.28.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.29.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.30.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.31.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.32.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.33.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.34.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.35.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.36.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.37.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.38.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.39.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.40.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.41.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.42.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.43.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.44.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.45.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.46.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.47.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.48.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.49.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.50.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.51.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.52.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.53.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.54.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.55.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.56.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.57.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.58.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.59.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.60.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.61.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.62.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.63.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.64.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.65.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.66.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.67.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.68.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.69.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.70.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.71.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.72.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.73.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.74.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.75.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.76.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.77.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.78.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.79.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.80.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.81.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.82.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.83.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.84.0|66|0 +1.3.6.1.4.1.9.9.146.1.5.85.0|66|0 +1.3.6.1.4.1.9.9.146.1.6.1.0|2|1 +1.3.6.1.4.1.9.9.146.1.6.2.0|2|1 +1.3.6.1.4.1.9.9.146.1.6.3.0|2|0 +1.3.6.1.4.1.9.9.146.1.6.4.0|2|0 +1.3.6.1.4.1.9.9.146.1.6.5.0|67|0 +1.3.6.1.4.1.9.9.150.1.1.1.0|66|20 +1.3.6.1.4.1.9.9.150.1.1.2.0|66|45 +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8001|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8002|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8003|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8004|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8005|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8006|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8007|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8008|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8009|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8010|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8011|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8012|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8013|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8014|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8015|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8016|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.8018|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.197256|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.197265|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.2.197307|4| +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8001|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8002|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8003|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8004|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8005|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8006|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8007|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8008|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8009|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8010|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8011|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8012|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8013|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8014|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8015|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8016|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.8018|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.197256|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.197265|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.3.197307|64x|00000000 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8001|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8002|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8003|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8004|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8005|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8006|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8007|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8008|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8009|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8010|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8011|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8012|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8013|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8014|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8015|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8016|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.8018|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.197256|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.197265|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.4.197307|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8001|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8002|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8003|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8004|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8005|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8006|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8007|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8008|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8009|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8010|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8011|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8012|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8013|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8014|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8015|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8016|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.8018|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.197256|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.197265|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.5.197307|2|2 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8001|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8002|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8003|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8004|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8005|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8006|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8007|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8008|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8009|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8010|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8011|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8012|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8013|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8014|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8015|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8016|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.8018|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.197256|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.197265|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.6.197307|66|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8001|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8002|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8003|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8004|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8005|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8006|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8007|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8008|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8009|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8010|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8011|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8012|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8013|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8014|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8015|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8016|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.8018|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.197256|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.197265|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.7.197307|6|0.0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8001|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8002|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8003|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8004|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8005|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8006|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8007|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8008|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8009|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8010|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8011|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8012|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8013|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8014|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8015|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8016|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.8018|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.197256|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.197265|2|0 +1.3.6.1.4.1.9.9.150.1.1.3.1.8.197307|2|0 +1.3.6.1.4.1.9.9.150.1.2.1.0|65|167678 +1.3.6.1.4.1.9.9.150.1.2.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.1.1.1.0|4x|5349502f322e30 +1.3.6.1.4.1.9.9.152.1.1.1.2.0|2|3 +1.3.6.1.4.1.9.9.152.1.1.1.3.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.4.0|2|70 +1.3.6.1.4.1.9.9.152.1.1.1.5.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.6.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.7.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.8.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.9.1.2.180|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.10.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.11.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.12.1.2.1|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.12.1.2.2|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.13.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.14.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.15.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.16.0|2|70 +1.3.6.1.4.1.9.9.152.1.1.1.17.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.18.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.19.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.20.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.1.21.0|2|3 +1.3.6.1.4.1.9.9.152.1.1.1.22.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.23.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.24.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.25.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.26.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.27.0|4| +1.3.6.1.4.1.9.9.152.1.1.1.28.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.1.29.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.1.30.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.2.1.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.2.0|2|180000 +1.3.6.1.4.1.9.9.152.1.1.2.3.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.4.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.5.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.6.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.7.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.8.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.9.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.10.0|2|1800 +1.3.6.1.4.1.9.9.152.1.1.2.11.0|2|2880 +1.3.6.1.4.1.9.9.152.1.1.2.12.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.13.0|2|5 +1.3.6.1.4.1.9.9.152.1.1.2.14.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.2.15.0|2|500 +1.3.6.1.4.1.9.9.152.1.1.2.16.0|2|120 +1.3.6.1.4.1.9.9.152.1.1.2.17.0|2|30 +1.3.6.1.4.1.9.9.152.1.1.3.1.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.2.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.3.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.5.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.6.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.7.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.8.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.9.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.10.0|2|10 +1.3.6.1.4.1.9.9.152.1.1.3.11.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.12.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.13.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.14.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.3.15.0|2|6 +1.3.6.1.4.1.9.9.152.1.1.4.2.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.4.3.0|4|100rel +1.3.6.1.4.1.9.9.152.1.1.4.4.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.4.5.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.4.6.0|2|3 +1.3.6.1.4.1.9.9.152.1.1.4.7.0|4x|00 +1.3.6.1.4.1.9.9.152.1.1.4.8.0|2|4 +1.3.6.1.4.1.9.9.152.1.1.4.9.0|4| +1.3.6.1.4.1.9.9.152.1.1.4.10.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.4.11.0|2|0 +1.3.6.1.4.1.9.9.152.1.1.4.12.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.4.13.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.4.14.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.400|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.401|2|57 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.402|2|21 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.403|2|57 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.404|2|1 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.405|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.406|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.407|2|21 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.408|2|102 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.409|2|41 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.410|2|1 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.413|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.414|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.415|2|79 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.416|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.417|2|63 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.420|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.422|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.424|2|21 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.480|2|20 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.481|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.482|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.483|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.484|2|28 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.485|2|1 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.486|2|17 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.487|2|16 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.488|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.500|2|41 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.501|2|79 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.502|2|27 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.503|2|38 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.504|2|102 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.505|2|127 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.580|2|49 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.600|2|17 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.603|2|21 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.604|2|1 +1.3.6.1.4.1.9.9.152.1.1.5.1.1.2.606|2|58 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.1|2|404 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.2|2|404 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.3|2|404 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.4|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.5|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.6|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.7|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.8|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.9|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.15|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.16|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.17|2|486 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.18|2|480 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.19|2|480 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.20|2|480 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.21|2|403 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.22|2|410 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.26|2|404 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.27|2|502 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.28|2|484 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.29|2|501 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.30|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.31|2|404 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.34|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.35|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.36|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.37|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.38|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.39|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.40|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.41|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.42|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.43|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.44|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.45|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.46|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.47|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.49|2|580 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.50|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.53|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.55|2|403 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.57|2|403 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.58|2|488 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.62|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.63|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.65|2|501 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.66|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.69|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.70|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.79|2|501 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.81|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.82|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.83|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.84|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.85|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.86|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.87|2|503 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.88|2|400 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.90|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.91|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.93|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.95|2|400 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.96|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.97|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.98|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.99|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.100|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.101|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.102|2|408 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.103|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.110|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.111|2|400 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.126|2|500 +1.3.6.1.4.1.9.9.152.1.1.5.2.1.2.127|2|500 +1.3.6.1.4.1.9.9.152.1.1.6.1.0|2|1 +1.3.6.1.4.1.9.9.152.1.1.7.1.0|2|2 +1.3.6.1.4.1.9.9.152.1.1.7.2.0|66|2147483647 +1.3.6.1.4.1.9.9.152.1.1.7.3.0|66|2147483647 +1.3.6.1.4.1.9.9.152.1.1.7.4.0|2|2 +1.3.6.1.4.1.9.9.152.1.2.1.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.9.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.1.10.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.3.66.89.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.4.73.78.70.79|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.5.67.79.77.69.84|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.5.80.82.65.67.75|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.6.67.65.78.67.69.76|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.6.73.78.86.73.84.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.6.78.79.84.73.70.89|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.7.79.80.84.73.79.78.83|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.9.83.85.66.83.67.82.73.66.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.2.10.85.80.68.65.84.69.0.0.0.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.3.66.89.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.4.73.78.70.79|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.5.67.79.77.69.84|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.5.80.82.65.67.75|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.6.67.65.78.67.69.76|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.6.73.78.86.73.84.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.6.78.79.84.73.70.89|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.7.79.80.84.73.79.78.83|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.9.83.85.66.83.67.82.73.66.69|65|0 +1.3.6.1.4.1.9.9.152.1.2.2.5.1.3.10.85.80.68.65.84.69.0.0.0.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.3.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.9.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.10.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.11.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.12.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.13.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.14.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.15.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.16.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.17.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.18.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.19.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.20.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.21.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.22.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.25.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.26.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.27.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.28.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.29.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.30.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.31.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.32.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.33.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.34.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.35.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.36.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.37.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.38.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.39.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.40.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.41.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.42.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.43.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.44.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.45.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.46.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.47.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.48.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.49.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.50.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.51.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.52.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.53.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.54.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.55.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.4.56.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.9.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.10.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.11.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.12.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.13.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.5.14.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.6.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.9.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.10.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.13.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.14.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.15.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.16.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.17.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.18.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.19.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.20.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.21.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.22.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.23.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.24.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.25.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.7.26.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.8.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.9.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.10.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.11.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.12.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.8.13.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.9.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.1.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.2.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.3.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.4.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.5.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.6.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.7.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.8.0|66|0 +1.3.6.1.4.1.9.9.152.1.2.10.9.0|66|0 +1.3.6.1.4.1.9.9.152.1.2.10.10.0|66|0 +1.3.6.1.4.1.9.9.152.1.2.10.11.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.12.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.13.0|65|0 +1.3.6.1.4.1.9.9.152.1.2.10.14.0|65|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.18|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.34|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.50|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.66|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.82|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.2.98|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.18|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.34|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.50|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.66|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.82|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.3.98|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.18|2|1 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.34|2|2 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.50|2|3 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.66|2|4 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.82|2|5 +1.3.6.1.4.1.9.9.166.1.1.1.1.4.98|2|6 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.18|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.34|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.50|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.66|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.82|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.5.98|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.18|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.34|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.50|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.66|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.82|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.6.98|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.18|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.34|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.50|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.66|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.82|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.7.98|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.18|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.34|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.50|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.66|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.82|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.8.98|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.18|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.34|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.50|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.66|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.82|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.9.98|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.18|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.34|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.50|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.66|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.82|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.10.98|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.18|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.34|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.50|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.66|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.82|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.13.98|2|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.14.18|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.14.34|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.14.50|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.14.66|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.14.82|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.14.98|4| +1.3.6.1.4.1.9.9.166.1.1.1.1.16.18|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.16.34|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.16.50|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.16.66|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.16.82|66|0 +1.3.6.1.4.1.9.9.166.1.1.1.1.16.98|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.18.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.34.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.50.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.66.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.82.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.1|66|24993452 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.65536|66|345396450 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.65537|66|602947382 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.65538|66|868646461 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.131072|66|366311494 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.131073|66|601126644 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.131074|66|936051563 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.196608|66|1593 +1.3.6.1.4.1.9.9.166.1.5.1.1.2.98.196609|66|1594 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.18.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.34.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.50.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.66.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.82.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.1|2|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.65536|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.65537|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.65538|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.131072|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.131073|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.131074|2|4 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.196608|2|2 +1.3.6.1.4.1.9.9.166.1.5.1.1.3.98.196609|2|3 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.18.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.34.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.50.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.66.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.82.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.1|66|0 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.65536|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.65537|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.65538|66|65536 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.131072|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.131073|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.131074|66|131072 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.196608|66|1 +1.3.6.1.4.1.9.9.166.1.5.1.1.4.98.196609|66|196608 +1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452|4x|4175746f516f732d342e302d776c616e2d506f72742d4f75747075742d506f6c696379 +1.3.6.1.4.1.9.9.166.1.6.1.1.1.63109013|4x|706c6174696e756d2d7570 +1.3.6.1.4.1.9.9.166.1.6.1.1.1.78389929|4|platinum +1.3.6.1.4.1.9.9.166.1.6.1.1.2.24993452|4| +1.3.6.1.4.1.9.9.166.1.6.1.1.2.63109013|4| +1.3.6.1.4.1.9.9.166.1.6.1.1.2.78389929|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.1.1593|4x|636c6173732d64656661756c74 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.316333386|4x|636d2d647363702d637337 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.316333387|4x|636d2d647363702d637336 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.345396450|4x|4175746f516f732d342e302d4f75747075742d4341505741502d432d436c617373 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.366311494|4x|4175746f516f732d342e302d4f75747075742d566f6963652d436c617373 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.391330332|4x|636d2d647363702d6e6f6e2d7374642d7365742d32 +1.3.6.1.4.1.9.9.166.1.7.1.1.1.391330335|4x|636d2d647363702d6e6f6e2d7374642d7365742d31 +1.3.6.1.4.1.9.9.166.1.7.1.1.2.1593|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.316333386|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.316333387|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.345396450|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.366311494|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.391330332|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.2.391330335|4| +1.3.6.1.4.1.9.9.166.1.7.1.1.3.1593|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.316333386|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.316333387|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.345396450|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.366311494|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.391330332|2|3 +1.3.6.1.4.1.9.9.166.1.7.1.1.3.391330335|2|3 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.1594|4x|4d6174636820616e7920 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.538459092|4x|4d6174636820206473637020353220 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.541413069|4x|4d61746368202064736370206373372028353629 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.550279467|4x|4d6174636820206473637020363120 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.550769048|4x|4d6174636820206473637020353920 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.555236775|4x|4d6174636820206473637020353320 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.567057086|4x|4d6174636820206473637020363220 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.567546731|4x|4d6174636820206473637020353820 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.572014394|4x|4d6174636820206473637020353020 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.583834641|4x|4d6174636820206473637020363320 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.588791949|4x|4d6174636820206473637020353120 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.601126644|4x|4d617463682020647363702065662028343629 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.602947382|4x|4d61746368206163636573732d67726f7570206e616d65204175746f516f732d342e302d4f75747075742d41636c2d4341505741502d43 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.622484610|4x|4d6174636820206473637020343720 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.636159288|4x|4d61746368202064736370206373362028343829 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.639121646|4x|4d6174636820206473637020353420 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.651431602|4x|4d6174636820206473637020353720 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.655899201|4x|4d6174636820206473637020353520 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.656039912|4x|4d6174636820206473637020343920 +1.3.6.1.4.1.9.9.166.1.8.1.1.1.667719512|4x|4d6174636820206473637020363020 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.1594|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.538459092|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.541413069|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.550279467|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.550769048|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.555236775|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.567057086|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.567546731|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.572014394|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.583834641|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.588791949|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.601126644|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.602947382|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.622484610|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.636159288|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.639121646|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.651431602|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.655899201|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.656039912|2|1 +1.3.6.1.4.1.9.9.166.1.8.1.1.2.667719512|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.1.868646461|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.1.936051563|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.2.868646461|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.2.936051563|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.3.868646461|2|2 +1.3.6.1.4.1.9.9.166.1.9.1.1.3.936051563|2|2 +1.3.6.1.4.1.9.9.166.1.9.1.1.4.868646461|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.4.936051563|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.5.868646461|2|512 +1.3.6.1.4.1.9.9.166.1.9.1.1.5.936051563|2|512 +1.3.6.1.4.1.9.9.166.1.9.1.1.6.868646461|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.6.936051563|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.7.868646461|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.7.936051563|2|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.8.868646461|66|1500 +1.3.6.1.4.1.9.9.166.1.9.1.1.8.936051563|66|1500 +1.3.6.1.4.1.9.9.166.1.9.1.1.9.868646461|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.9.936051563|2|1 +1.3.6.1.4.1.9.9.166.1.9.1.1.10.868646461|66|512 +1.3.6.1.4.1.9.9.166.1.9.1.1.10.936051563|66|512 +1.3.6.1.4.1.9.9.166.1.9.1.1.11.868646461|66|0 +1.3.6.1.4.1.9.9.166.1.9.1.1.11.936051563|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1905989895|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1912766803|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1915401445|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1936933230|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1958166030|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1964026721|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1979178466|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.1.1982965554|4x|80000000 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1905989895|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1912766803|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1915401445|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1936933230|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1958166030|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1964026721|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1979178466|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.2.1982965554|2|46 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.3.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.4.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.5.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1905989895|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1912766803|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1915401445|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1936933230|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1958166030|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1964026721|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1979178466|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.6.1982965554|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1905989895|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1912766803|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1915401445|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1936933230|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1958166030|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1964026721|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1979178466|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.7.1982965554|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1905989895|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1912766803|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1915401445|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1936933230|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1958166030|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1964026721|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1979178466|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.8.1982965554|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1905989895|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1912766803|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1915401445|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1936933230|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1958166030|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1964026721|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1979178466|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.9.1982965554|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1905989895|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1912766803|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1915401445|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1936933230|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1958166030|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1964026721|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1979178466|66|0 +1.3.6.1.4.1.9.9.166.1.14.1.1.10.1982965554|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.82.196608|65|1 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.1.98.196608|65|1 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.82.65536|65|24268853 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.82.131072|65|30041645 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.82.196608|65|1467346767 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.98.65536|65|26396279 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.98.131072|65|32496088 +1.3.6.1.4.1.9.9.166.1.15.1.1.2.98.196608|65|92893094 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.82.65536|70|24268853 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.82.131072|70|30041645 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.82.196608|70|5762314063 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.98.65536|70|26396279 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.98.131072|70|32496088 +1.3.6.1.4.1.9.9.166.1.15.1.1.3.98.196608|70|4387860390 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.82.131072|65|2 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.82.196608|65|1119 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.98.131072|65|3 +1.3.6.1.4.1.9.9.166.1.15.1.1.4.98.196608|65|887 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.82.65536|65|3067940392 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.82.131072|65|4194963082 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.82.196608|65|1956686834 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.98.65536|65|3437671986 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.98.131072|65|955050820 +1.3.6.1.4.1.9.9.166.1.15.1.1.5.98.196608|65|3847905365 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.82.65536|70|3067940392 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.82.131072|70|12784897674 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.82.196608|70|4808025091058 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.98.65536|70|3437671986 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.98.131072|70|13839952708 +1.3.6.1.4.1.9.9.166.1.15.1.1.6.98.196608|70|3813483896917 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.18.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.18.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.18.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.34.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.34.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.34.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.50.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.50.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.50.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.66.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.66.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.66.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.82.65536|66|3000 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.82.131072|66|3000 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.82.196608|66|377000 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.98.65536|66|5000 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.98.131072|66|1000 +1.3.6.1.4.1.9.9.166.1.15.1.1.7.98.196608|66|2194000 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.82.131072|65|2 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.82.196608|65|1119 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.98.131072|65|3 +1.3.6.1.4.1.9.9.166.1.15.1.1.8.98.196608|65|887 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.82.65536|65|3067940392 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.82.131072|65|4194963082 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.82.196608|65|1956686834 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.98.65536|65|3437671986 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.98.131072|65|955050820 +1.3.6.1.4.1.9.9.166.1.15.1.1.9.98.196608|65|3847905365 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.82.65536|70|3067940392 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.82.131072|70|12784897674 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.82.196608|70|4808025091058 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.98.65536|70|3437671986 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.98.131072|70|13839952708 +1.3.6.1.4.1.9.9.166.1.15.1.1.10.98.196608|70|3813483896917 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.18.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.18.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.18.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.34.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.34.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.34.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.50.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.50.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.50.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.66.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.66.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.66.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.82.65536|66|3000 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.82.131072|66|3000 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.82.196608|66|377000 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.98.65536|66|5000 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.98.131072|66|1000 +1.3.6.1.4.1.9.9.166.1.15.1.1.11.98.196608|66|2194000 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.12.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.13.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.82.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.82.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.82.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.98.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.98.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.14.98.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.15.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.16.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.82.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.82.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.82.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.98.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.98.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.17.98.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.18.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.18.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.18.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.34.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.34.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.34.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.50.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.50.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.50.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.66.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.66.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.66.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.82.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.82.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.82.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.98.65536|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.98.131072|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.18.98.196608|66|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.19.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.20.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.82.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.82.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.82.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.98.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.98.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.21.98.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.22.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.23.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.82.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.82.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.82.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.98.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.98.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.24.98.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.25.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.18.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.18.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.18.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.34.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.34.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.34.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.50.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.50.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.50.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.66.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.66.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.66.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.82.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.82.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.82.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.98.65536|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.98.131072|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.26.98.196608|65|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.18.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.18.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.18.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.34.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.34.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.34.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.50.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.50.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.50.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.66.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.66.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.66.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.82.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.82.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.82.196608|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.98.65536|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.98.131072|70|0 +1.3.6.1.4.1.9.9.166.1.15.1.1.27.98.196608|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.18.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.18.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.18.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.34.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.34.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.34.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.50.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.50.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.50.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.66.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.66.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.66.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.82.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.82.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.82.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.98.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.98.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.1.98.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.18.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.18.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.18.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.34.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.34.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.34.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.50.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.50.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.50.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.66.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.66.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.66.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.82.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.82.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.82.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.98.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.98.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.2.98.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.18.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.18.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.18.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.34.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.34.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.34.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.50.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.50.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.50.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.66.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.66.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.66.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.82.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.82.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.82.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.98.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.98.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.3.98.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.18.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.18.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.18.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.34.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.34.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.34.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.50.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.50.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.50.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.66.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.66.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.66.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.82.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.82.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.82.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.98.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.98.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.4.98.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.18.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.18.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.18.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.34.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.34.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.34.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.50.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.50.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.50.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.66.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.66.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.66.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.82.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.82.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.82.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.98.65537|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.98.131073|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.5.98.196609|65|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.18.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.18.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.18.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.34.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.34.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.34.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.50.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.50.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.50.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.66.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.66.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.66.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.82.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.82.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.82.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.98.65537|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.98.131073|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.6.98.196609|70|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.18.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.18.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.18.196609|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.34.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.34.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.34.196609|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.50.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.50.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.50.196609|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.66.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.66.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.66.196609|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.82.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.82.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.82.196609|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.98.65537|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.98.131073|66|0 +1.3.6.1.4.1.9.9.166.1.16.1.1.7.98.196609|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.18.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.18.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.34.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.34.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.50.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.50.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.66.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.66.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.82.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.82.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.98.65538|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.1.98.131074|66|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.18.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.18.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.34.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.34.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.50.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.50.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.66.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.66.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.82.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.82.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.98.65538|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.2.98.131074|66|512 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.18.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.18.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.34.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.34.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.50.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.50.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.66.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.66.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.82.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.82.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.98.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.3.98.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.18.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.18.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.34.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.34.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.50.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.50.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.66.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.66.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.82.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.82.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.98.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.4.98.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.18.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.18.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.34.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.34.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.50.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.50.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.66.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.66.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.82.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.82.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.98.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.5.98.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.18.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.18.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.34.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.34.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.50.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.50.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.66.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.66.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.82.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.82.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.98.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.6.98.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.18.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.18.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.34.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.34.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.50.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.50.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.66.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.66.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.82.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.82.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.98.65538|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.7.98.131074|65|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.18.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.18.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.34.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.34.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.50.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.50.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.66.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.66.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.82.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.82.131074|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.98.65538|70|0 +1.3.6.1.4.1.9.9.166.1.18.1.1.8.98.131074|70|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.1.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.2.1982965554|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.3.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.4.1982965554|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.5.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.6.1982965554|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.7.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.8.1982965554|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.9.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.10.1982965554|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1905989895|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1912766803|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1915401445|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1936933230|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1958166030|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1964026721|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1979178466|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.11.1982965554|2|0 +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1905989895|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1912766803|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1915401445|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1936933230|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1958166030|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1964026721|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1979178466|4| +1.3.6.1.4.1.9.9.166.1.28.1.1.12.1982965554|4| +1.3.6.1.4.1.9.9.168.1.1.1.0|2|0 +1.3.6.1.4.1.9.9.168.1.1.2.0|2|3 +1.3.6.1.4.1.9.9.168.1.1.3.0|2|-10 +1.3.6.1.4.1.9.9.168.1.1.4.0|4x|04000000 +1.3.6.1.4.1.9.9.168.1.1.5.0|4x|04000000 +1.3.6.1.4.1.9.9.168.1.1.6.0|4x|18584303 +1.3.6.1.4.1.9.9.168.1.1.7.0|4x|ea80569456041980 +1.3.6.1.4.1.9.9.168.1.1.8.0|2|10 +1.3.6.1.4.1.9.9.168.1.1.9.0|2|15495 +1.3.6.1.4.1.9.9.168.1.1.10.0|4x|ea8059113c6a7fa0 +1.3.6.1.4.1.9.9.168.1.2.1.1.2.15495|2|1 +1.3.6.1.4.1.9.9.168.1.2.1.1.3.15495|64x|0ab73401 +1.3.6.1.4.1.9.9.168.1.2.1.1.4.15495|2|123 +1.3.6.1.4.1.9.9.168.1.2.1.1.5.15495|64x|00000000 +1.3.6.1.4.1.9.9.168.1.2.1.1.6.15495|2|123 +1.3.6.1.4.1.9.9.168.1.2.1.1.7.15495|2|0 +1.3.6.1.4.1.9.9.168.1.2.1.1.8.15495|2|4 +1.3.6.1.4.1.9.9.168.1.2.1.1.9.15495|2|2 +1.3.6.1.4.1.9.9.168.1.2.1.1.10.15495|2|10 +1.3.6.1.4.1.9.9.168.1.2.1.1.11.15495|2|10 +1.3.6.1.4.1.9.9.168.1.2.1.1.12.15495|2|-10 +1.3.6.1.4.1.9.9.168.1.2.1.1.13.15495|4x|000008b4 +1.3.6.1.4.1.9.9.168.1.2.1.1.14.15495|4x|0000029c +1.3.6.1.4.1.9.9.168.1.2.1.1.15.15495|4x|d8ef230c +1.3.6.1.4.1.9.9.168.1.2.1.1.16.15495|4x|ea805659fa9fc128 +1.3.6.1.4.1.9.9.168.1.2.1.1.17.15495|4x|0000000000000000 +1.3.6.1.4.1.9.9.168.1.2.1.1.18.15495|4x|ea80569456872bf0 +1.3.6.1.4.1.9.9.168.1.2.1.1.19.15495|4x|ea80569456872bf0 +1.3.6.1.4.1.9.9.168.1.2.1.1.20.15495|2|1448737439 +1.3.6.1.4.1.9.9.168.1.2.1.1.21.15495|2|255 +1.3.6.1.4.1.9.9.168.1.2.1.1.22.15495|2|0 +1.3.6.1.4.1.9.9.168.1.2.1.1.23.15495|4x|00000000 +1.3.6.1.4.1.9.9.168.1.2.1.1.24.15495|4x|00010000 +1.3.6.1.4.1.9.9.168.1.2.1.1.25.15495|4x|0001f9f0 +1.3.6.1.4.1.9.9.168.1.2.1.1.26.15495|66|8 +1.3.6.1.4.1.9.9.168.1.2.1.1.27.15495|2|1 +1.3.6.1.4.1.9.9.168.1.2.1.1.28.15495|66|1448737439 +1.3.6.1.4.1.9.9.168.1.2.1.1.29.15495|2|2 +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.1|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.2|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.3|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.4|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.5|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.6|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.7|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.2.15495.8|4x|f8621b0f +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.1|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.2|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.3|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.4|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.5|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.6|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.7|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.3.15495.8|4x|60ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.1|4x|90ec9fa0 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.2|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.3|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.4|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.5|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.6|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.7|4x|dcca1f13 +1.3.6.1.4.1.9.9.168.1.3.2.1.4.15495.8|4x|dcca1f13 +1.3.6.1.4.1.9.9.171.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.171.1.2.1.1.0|66|0 +1.3.6.1.4.1.9.9.171.1.2.1.2.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.3.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.4.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.5.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.6.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.7.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.8.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.9.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.10.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.11.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.12.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.13.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.14.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.15.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.16.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.17.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.18.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.19.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.20.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.21.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.22.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.23.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.24.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.25.0|65|0 +1.3.6.1.4.1.9.9.171.1.2.1.26.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.1.0|66|0 +1.3.6.1.4.1.9.9.171.1.3.1.2.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.3.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.4.0|70|0 +1.3.6.1.4.1.9.9.171.1.3.1.5.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.6.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.7.0|70|0 +1.3.6.1.4.1.9.9.171.1.3.1.8.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.9.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.10.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.11.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.12.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.13.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.14.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.15.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.16.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.17.0|70|0 +1.3.6.1.4.1.9.9.171.1.3.1.18.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.19.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.20.0|70|0 +1.3.6.1.4.1.9.9.171.1.3.1.21.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.22.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.23.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.24.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.25.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.26.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.27.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.28.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.29.0|65|0 +1.3.6.1.4.1.9.9.171.1.3.1.30.0|65|0 +1.3.6.1.4.1.9.9.171.1.4.1.1.1.0|2|200 +1.3.6.1.4.1.9.9.171.1.4.1.1.2.0|2|1 +1.3.6.1.4.1.9.9.171.1.5.1.1.1.0|2|200 +1.3.6.1.4.1.9.9.171.1.6.1.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.2.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.3.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.4.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.5.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.6.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.7.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.8.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.9.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.10.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.11.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.12.0|2|2 +1.3.6.1.4.1.9.9.171.1.6.13.0|2|2 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.5|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.52|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.72|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.176|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.177|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.178|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.179|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.180|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.181|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.182|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.183|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.184|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.186|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.187|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.191|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.193|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.200|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.205|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1002|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1003|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1004|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.1.1.1005|2|1 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.5|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.52|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.72|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.176|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.177|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.178|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.179|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.180|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.181|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.182|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.183|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.184|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.186|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.187|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.191|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.193|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.200|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.205|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1002|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1003|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1004|2|0 +1.3.6.1.4.1.9.9.173.1.1.1.1.2.1.1005|2|0 +1.3.6.1.4.1.9.9.176.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.176.1.1.2.0|2|14 +1.3.6.1.4.1.9.9.176.1.1.3.0|2|0 +1.3.6.1.4.1.9.9.176.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.176.1.1.5.0|2|1 +1.3.6.1.4.1.9.9.176.1.1.6.0|2|2 +1.3.6.1.4.1.9.9.176.1.1.7.0|2|1 +1.3.6.1.4.1.9.9.176.1.1.8.0|2|2 +1.3.6.1.4.1.9.9.176.1.1.9.0|67|0 +1.3.6.1.4.1.9.9.176.1.1.10.0|67|0 +1.3.6.1.4.1.9.9.176.1.1.11.1.2.1|4x|4e6f6e2d726564756e64616e74 +1.3.6.1.4.1.9.9.176.1.1.11.1.2.6|4|rpr +1.3.6.1.4.1.9.9.176.1.1.11.1.2.7|4x|7270722d706c7573 +1.3.6.1.4.1.9.9.176.1.1.11.1.2.8|4|sso +1.3.6.1.4.1.9.9.176.1.1.12.0|2|0 +1.3.6.1.4.1.9.9.176.1.1.13.0|2|0 +1.3.6.1.4.1.9.9.176.1.1.14.0|4| +1.3.6.1.4.1.9.9.176.1.1.15.0|4| +1.3.6.1.4.1.9.9.176.1.2.1.0|2|2 +1.3.6.1.4.1.9.9.176.1.2.2.0|66|7 +1.3.6.1.4.1.9.9.176.1.2.3.0|66|2 +1.3.6.1.4.1.9.9.176.1.2.4.0|66|9 +1.3.6.1.4.1.9.9.176.1.2.5.0|66|4000 +1.3.6.1.4.1.9.9.176.1.2.6.0|66|200 +1.3.6.1.4.1.9.9.176.1.2.7.0|66|9000 +1.3.6.1.4.1.9.9.176.1.2.8.0|66|30000 +1.3.6.1.4.1.9.9.176.1.2.9.0|66|8000 +1.3.6.1.4.1.9.9.176.1.2.10.0|66|30000 +1.3.6.1.4.1.9.9.176.1.2.11.0|2|0 +1.3.6.1.4.1.9.9.176.1.2.12.0|2|2 +1.3.6.1.4.1.9.9.176.1.2.13.0|2|2 +1.3.6.1.4.1.9.9.176.1.2.14.0|2|8 +1.3.6.1.4.1.9.9.176.1.2.15.0|4|sso +1.3.6.1.4.1.9.9.176.1.2.16.0|2|1 +1.3.6.1.4.1.9.9.176.1.3.1.0|66|10 +1.3.6.1.4.1.9.9.176.1.3.3.0|65|28 +1.3.6.1.4.1.9.9.176.1.3.4.0|2|0 +1.3.6.1.4.1.9.9.184.1.1.1.0|65|0 +1.3.6.1.4.1.9.9.184.1.1.2.0|65|0 +1.3.6.1.4.1.9.9.184.1.1.3.0|2|1 +1.3.6.1.4.1.9.9.184.1.1.4.0|2|0 +1.3.6.1.4.1.9.9.184.1.1.5.0|4| +1.3.6.1.4.1.9.9.184.1.1.6.0|2|0 +1.3.6.1.4.1.9.9.184.1.1.7.0|4| +1.3.6.1.4.1.9.9.184.1.1.8.0|2|0 +1.3.6.1.4.1.9.9.184.1.1.9.0|4| +1.3.6.1.4.1.9.9.187.1.3.2.0|66|0 +1.3.6.1.4.1.9.9.194.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.194.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.194.1.1.3.0|66|4294967295 +1.3.6.1.4.1.9.9.194.1.1.4.0|66|4294967295 +1.3.6.1.4.1.9.9.194.1.1.5.0|65|0 +1.3.6.1.4.1.9.9.194.1.1.6.0|66|100 +1.3.6.1.4.1.9.9.194.1.1.7.0|66|0 +1.3.6.1.4.1.9.9.194.1.1.8.0|66|100000 +1.3.6.1.4.1.9.9.194.1.1.9.0|66|100 +1.3.6.1.4.1.9.9.194.1.1.10.0|66|100000 +1.3.6.1.4.1.9.9.194.1.1.11.0|66|100 +1.3.6.1.4.1.9.9.194.1.1.12.0|66|100000 +1.3.6.1.4.1.9.9.194.1.1.13.0|66|0 +1.3.6.1.4.1.9.9.194.1.1.14.0|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.1.12|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.2.12|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.3.12|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.4.12|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.5.12|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.1|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.2|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.3|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.4|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.5|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.6|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.7|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.8|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.9|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.10|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.11|66|0 +1.3.6.1.4.1.9.9.194.1.4.1.1.6.12|66|0 +1.3.6.1.4.1.9.9.194.1.5.1.0|4x|000000000000 +1.3.6.1.4.1.9.9.194.1.5.2.0|66|0 +1.3.6.1.4.1.9.9.194.1.5.3.0|66|0 +1.3.6.1.4.1.9.9.194.1.5.4.0|66|0 +1.3.6.1.4.1.9.9.194.1.5.5.0|66|0 +1.3.6.1.4.1.9.9.195.1.1.1.1.2000|66|1680447796 +1.3.6.1.4.1.9.9.195.1.1.1.2.2000|66|33554432 +1.3.6.1.4.1.9.9.195.1.1.1.3.2000|66|0 +1.3.6.1.4.1.9.9.195.1.1.1.4.2000|66|0 +1.3.6.1.4.1.9.9.195.1.1.1.5.2000|70|1680447796 +1.3.6.1.4.1.9.9.195.1.2.1.1.2000|4x|0102 +1.3.6.1.4.1.9.9.195.1.2.1.2.2000|4x|0000 +1.3.6.1.4.1.9.9.195.1.2.1.3.2000|4| +1.3.6.1.4.1.9.9.221.1.1.1.1.2.2000.1|2|2 +1.3.6.1.4.1.9.9.221.1.1.1.1.2.2000.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.3.2000.1|4|Processor +1.3.6.1.4.1.9.9.221.1.1.1.1.3.2000.2|4x|726573657276652050726f636573736f72 +1.3.6.1.4.1.9.9.221.1.1.1.1.4.2000.1|6|0.0 +1.3.6.1.4.1.9.9.221.1.1.1.1.4.2000.2|6|0.0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.2000.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.5.2000.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.2000.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.6.2000.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.2000.1|66|453666736 +1.3.6.1.4.1.9.9.221.1.1.1.1.7.2000.2|66|88 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.2000.1|66|1220346668 +1.3.6.1.4.1.9.9.221.1.1.1.1.8.2000.2|66|102316 +1.3.6.1.4.1.9.9.221.1.1.1.1.9.2000.1|66|1100603640 +1.3.6.1.4.1.9.9.221.1.1.1.1.9.2000.2|66|102312 +1.3.6.1.4.1.9.9.221.1.1.1.1.10.2000.1|66|1215240996 +1.3.6.1.4.1.9.9.221.1.1.1.1.10.2000.2|66|102316 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.17.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.2000.1|70|453666736 +1.3.6.1.4.1.9.9.221.1.1.1.1.18.2000.2|70|88 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.19.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.2000.1|70|1220346668 +1.3.6.1.4.1.9.9.221.1.1.1.1.20.2000.2|70|102316 +1.3.6.1.4.1.9.9.221.1.1.1.1.21.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.21.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.22.2000.1|70|1100603640 +1.3.6.1.4.1.9.9.221.1.1.1.1.22.2000.2|70|102312 +1.3.6.1.4.1.9.9.221.1.1.1.1.23.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.23.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.1.1.24.2000.1|70|1215240996 +1.3.6.1.4.1.9.9.221.1.1.1.1.24.2000.2|70|102316 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.4|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.5|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.6|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.7|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.8|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.9|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.10|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.11|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.12|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.13|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.14|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.15|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.16|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.17|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.18|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.19|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.20|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.21|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.22|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.23|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.24|2|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.2.2000.25|2|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.1|4|Small +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.2|4|Middle +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.3|4|Big +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.4|4|VeryBig +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.5|4|Large +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.6|4|VeryLarge +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.7|4|Huge +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.8|4|Header +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.9|4x|462f53 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.10|4|Normal +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.11|4x|434620536d616c6c +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.12|4x|47656e6572696320454420506f6f6c +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.13|4x|4346204d6964646c65 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.14|4x|5379736c6f6720454420506f6f6c +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.15|4|EOBC0 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.16|4x|434620426967 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.17|4|IPC +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.18|4x|43462056657279426967 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.19|4x|4346204c61726765 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.20|4x|495043204d656469756d +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.21|4x|50726976617465204875676520495043 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.22|4x|507269766174652048756765 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.23|4x|495043204c61726765 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.24|4x|6c736d70695f7278 +1.3.6.1.4.1.9.9.221.1.1.2.1.3.2000.25|4x|6c736d70695f7478 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.1|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.2|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.3|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.4|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.5|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.6|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.7|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.8|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.9|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.10|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.11|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.12|2|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.13|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.14|2|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.15|2|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.16|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.17|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.18|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.19|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.20|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.21|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.22|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.23|2|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.24|2|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.4.2000.25|2|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.1|66|104 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.2|66|600 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.3|66|1536 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.4|66|4520 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.5|66|5024 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.6|66|8304 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.7|66|18024 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.8|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.9|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.10|66|512 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.11|66|104 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.12|66|512 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.13|66|600 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.14|66|600 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.15|66|1524 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.16|66|1536 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.17|66|4096 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.18|66|4520 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.19|66|5024 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.20|66|16384 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.21|66|18024 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.22|66|65280 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.23|66|65535 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.24|66|416 +1.3.6.1.4.1.9.9.221.1.1.2.1.5.2000.25|66|416 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.1|66|200 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.2|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.3|66|50 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.8|66|10 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.9|66|128 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.10|66|128 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.11|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.12|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.13|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.14|66|1056 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.16|66|25 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.17|66|420 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.18|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.19|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.20|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.23|66|16 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.24|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.6.2000.25|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.1|66|2500 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.2|66|2000 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.3|66|1800 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.4|66|300 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.5|66|300 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.6|66|300 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.7|66|33 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.8|66|512 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.9|66|1024 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.10|66|1024 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.11|66|200 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.12|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.13|66|200 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.14|66|1056 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.15|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.16|66|50 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.17|66|4200 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.18|66|4 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.19|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.20|66|8 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.21|66|4 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.22|66|4 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.23|66|16 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.24|66|8194 +1.3.6.1.4.1.9.9.221.1.1.2.1.7.2000.25|66|4098 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.1|66|1200 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.2|66|900 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.3|66|900 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.4|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.5|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.6|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.7|66|20 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.8|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.9|66|384 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.10|66|512 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.11|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.12|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.13|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.14|66|1056 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.15|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.16|66|25 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.17|66|1260 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.18|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.19|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.20|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.23|66|16 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.24|66|8194 +1.3.6.1.4.1.9.9.221.1.1.2.1.8.2000.25|66|4098 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.8|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.9|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.10|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.11|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.12|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.13|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.14|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.16|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.17|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.18|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.19|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.20|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.23|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.24|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.9.2000.25|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.1|66|1200 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.2|66|900 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.3|66|900 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.4|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.5|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.6|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.7|66|20 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.8|66|266 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.9|66|384 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.10|66|512 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.11|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.12|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.13|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.14|66|1057 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.15|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.16|66|26 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.17|66|1260 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.18|66|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.19|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.20|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.21|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.22|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.23|66|17 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.24|66|8194 +1.3.6.1.4.1.9.9.221.1.1.2.1.10.2000.25|66|4098 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.1|66|1200 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.2|66|898 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.3|66|899 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.4|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.5|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.6|66|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.7|66|20 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.8|66|10 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.9|66|128 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.10|66|384 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.11|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.12|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.13|66|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.14|66|1025 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.15|66|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.16|66|26 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.17|66|1259 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.18|66|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.19|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.20|66|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.21|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.22|66|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.23|66|17 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.24|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.11.2000.25|66|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.1|65|16007484 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.2|65|11091753 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.3|65|5098804 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.7|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.8|65|253 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.9|65|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.10|65|128 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.14|65|164331 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.17|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.24|65|8194 +1.3.6.1.4.1.9.9.221.1.1.2.1.12.2000.25|65|4098 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.8|65|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.13.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.1|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.2|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.3|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.4|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.5|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.6|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.7|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.8|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.9|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.10|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.11|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.12|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.13|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.14|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.15|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.16|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.17|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.18|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.19|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.20|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.21|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.22|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.23|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.24|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.16.2000.25|2|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.1|65|1200 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.2|65|900 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.3|65|901 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.4|65|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.5|65|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.6|65|100 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.7|65|21 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.8|65|266 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.11|65|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.12|65|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.13|65|101 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.14|65|1057 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.15|65|256 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.16|65|26 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.17|65|1260 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.18|65|3 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.19|65|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.20|65|2 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.21|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.22|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.23|65|17 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.17.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.1|67|1095 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.2|67|1096 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.3|67|1097 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.4|67|1097 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.5|67|1097 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.6|67|1097 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.7|67|1097 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.8|67|6795 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.9|67|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.10|67|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.11|67|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.12|67|1464 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.13|67|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.14|67|1464 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.15|67|480 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.16|67|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.17|67|148 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.18|67|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.19|67|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.20|67|144 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.21|67|141 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.22|67|141 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.23|67|146 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.24|67|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.18.2000.25|67|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.3|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.4|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.5|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.7|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.8|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.11|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.13|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.16|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.18|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.19|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.21|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.22|65|468 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.23|65|75726 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.19.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.3|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.4|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.5|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.7|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.8|65|10 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.11|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.12|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.13|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.14|65|1 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.16|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.18|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.19|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.21|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.22|65|469 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.23|65|75727 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.20.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.8|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.21.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.8|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.2.1.22.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.8|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.9|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.10|66|128 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.11|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.12|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.13|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.14|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.16|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.17|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.18|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.19|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.20|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.23|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.24|66|8194 +1.3.6.1.4.1.9.9.221.1.1.3.1.1.2000.25|66|4098 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.8|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.9|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.10|66|128 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.11|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.12|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.13|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.14|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.16|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.17|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.18|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.19|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.20|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.23|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.24|66|8194 +1.3.6.1.4.1.9.9.221.1.1.3.1.2.2000.25|66|4098 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.8|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.9|66|256 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.10|66|128 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.11|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.12|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.13|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.14|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.16|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.17|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.18|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.19|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.20|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.23|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.24|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.3.2000.25|66|4097 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.8|65|18312005 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.24|65|21375398 +1.3.6.1.4.1.9.9.221.1.1.3.1.4.2000.25|65|19527122 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.8|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.5.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.1|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.2|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.3|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.4|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.5|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.6|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.7|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.8|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.9|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.10|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.11|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.12|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.13|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.14|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.15|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.16|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.17|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.18|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.19|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.20|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.21|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.22|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.23|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.24|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.6.2000.25|66|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.1|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.2|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.3|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.4|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.5|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.6|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.7|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.8|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.9|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.10|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.11|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.12|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.13|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.14|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.15|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.16|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.17|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.18|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.19|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.20|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.21|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.22|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.23|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.24|65|0 +1.3.6.1.4.1.9.9.221.1.1.3.1.7.2000.25|65|0 +1.3.6.1.4.1.9.9.221.1.2.1.0|2|2 +1.3.6.1.4.1.9.9.225.1.1.1.0|2|0 +1.3.6.1.4.1.9.9.225.1.1.2.0|2|0 +1.3.6.1.4.1.9.9.225.1.1.4.0|66|64 +1.3.6.1.4.1.9.9.225.1.3.1.1.1.5|2|1 +1.3.6.1.4.1.9.9.225.1.3.1.1.1.6|2|1 +1.3.6.1.4.1.9.9.225.1.3.1.1.2.5|2|2 +1.3.6.1.4.1.9.9.225.1.3.1.1.2.6|2|2 +1.3.6.1.4.1.9.9.225.1.4.1.1.1.12|4x|0000 +1.3.6.1.4.1.9.9.225.1.5.1.1.1.12|2|0 +1.3.6.1.4.1.9.9.225.1.5.1.1.2.12|66|8 +1.3.6.1.4.1.9.9.225.1.5.1.1.3.12|66|0 +1.3.6.1.4.1.9.9.226.1.1.1.0|66|2 +1.3.6.1.4.1.9.9.238.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.238.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.1|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.2|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.3|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.4|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.5|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.6|66|0 +1.3.6.1.4.1.9.9.238.1.2.2.1.1.12|66|0 +1.3.6.1.4.1.9.9.238.1.3.1.0|2|0 +1.3.6.1.4.1.9.9.238.1.3.2.0|66|0 +1.3.6.1.4.1.9.9.238.1.3.3.0|2|1 +1.3.6.1.4.1.9.9.238.1.3.4.0|4x|00000000 +1.3.6.1.4.1.9.9.238.1.3.5.0|2|1 +1.3.6.1.4.1.9.9.238.1.3.6.0|4x|00000000 +1.3.6.1.4.1.9.9.238.1.3.7.0|2|0 +1.3.6.1.4.1.9.9.238.1.3.8.0|2|1 +1.3.6.1.4.1.9.9.238.1.3.9.0|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.1|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.2|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.3|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.4|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.5|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.6|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.7|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.8|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.9|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.10|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.11|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.1.12|2|2 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.1|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.2|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.3|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.4|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.5|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.6|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.7|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.8|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.9|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.10|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.11|67|0 +1.3.6.1.4.1.9.9.244.1.1.1.1.2.12|67|0 +1.3.6.1.4.1.9.9.244.1.7.1.0|2|2 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.1|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.2|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.3|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.4|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.5|66|5524 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.6|66|13317 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.7|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.8|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.9|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.10|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.11|66|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.1.12|66|29111 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.1|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.2|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.3|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.4|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.5|66|14791 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.6|66|5933 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.7|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.8|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.9|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.10|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.11|66|7 +1.3.6.1.4.1.9.9.276.1.1.1.1.2.12|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.1|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.2|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.3|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.4|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.5|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.6|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.7|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.8|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.9|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.10|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.11|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.3.12|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.4.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.5.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.6.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.7.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.8.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.9.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.10.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.5|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.6|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.11.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.1|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.2|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.3|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.4|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.5|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.6|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.7|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.8|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.9|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.10|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.11|67|0 +1.3.6.1.4.1.9.9.276.1.1.1.1.12.12|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.1|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.2|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.3|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.4|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.5|65|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.6|65|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.10|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.11|65|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.1.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.1|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.2|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.3|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.4|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.5|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.6|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.7|2|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.8|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.9|2|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.10|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.11|2|2 +1.3.6.1.4.1.9.9.276.1.1.2.1.2.12|2|1 +1.3.6.1.4.1.9.9.276.1.1.2.1.3.1|4| +1.3.6.1.4.1.9.9.276.1.1.2.1.3.2|4| +1.3.6.1.4.1.9.9.276.1.1.2.1.3.3|4| +1.3.6.1.4.1.9.9.276.1.1.2.1.3.4|4| +1.3.6.1.4.1.9.9.276.1.1.2.1.3.5|4|up +1.3.6.1.4.1.9.9.276.1.1.2.1.3.6|4|up +1.3.6.1.4.1.9.9.276.1.1.2.1.3.7|4|down +1.3.6.1.4.1.9.9.276.1.1.2.1.3.8|4|up +1.3.6.1.4.1.9.9.276.1.1.2.1.3.9|4| +1.3.6.1.4.1.9.9.276.1.1.2.1.3.10|4|down +1.3.6.1.4.1.9.9.276.1.1.2.1.3.11|4|up +1.3.6.1.4.1.9.9.276.1.1.2.1.3.12|4|up +1.3.6.1.4.1.9.9.276.1.1.2.1.4.1|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.2|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.3|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.4|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.5|65|5 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.6|65|3 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.7|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.8|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.9|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.10|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.11|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.4.12|65|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.1|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.2|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.3|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.4|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.5|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.6|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.7|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.8|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.9|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.10|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.11|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.5.12|67|0 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.1|66|2500000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.2|66|2500000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.3|66|2500000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.4|66|2500000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.5|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.6|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.7|66|1000000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.8|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.9|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.10|66|1000000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.11|66|1000000000 +1.3.6.1.4.1.9.9.276.1.1.2.1.11.12|66|4294967295 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.1|66|2500 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.2|66|2500 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.3|66|2500 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.4|66|2500 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.5|66|10000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.6|66|10000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.7|66|1000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.8|66|10000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.9|66|10000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.10|66|1000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.11|66|1000 +1.3.6.1.4.1.9.9.276.1.1.2.1.12.12|66|20000 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.7|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.8|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.9|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.10|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.11|70|211 +1.3.6.1.4.1.9.9.276.1.4.1.1.1.12|70|521 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.7|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.8|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.9|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.10|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.11|70|397000 +1.3.6.1.4.1.9.9.276.1.4.1.1.2.12|70|2617000 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.7|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.8|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.9|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.10|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.11|70|340 +1.3.6.1.4.1.9.9.276.1.4.1.1.3.12|70|450 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.7|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.8|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.9|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.10|70|0 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.11|70|2342000 +1.3.6.1.4.1.9.9.276.1.4.1.1.4.12|70|2580000 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.71.105.48|2|7 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.78.117.48|2|9 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.80.111.57|2|12 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.86.108.49|2|10 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.3.86.111.48|2|8 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.4.86.108.53.50|2|11 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.101.48.47.49.47.48|2|5 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.101.48.47.49.47.49|2|6 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.119.48.47.48.47.48|2|1 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.119.48.47.48.47.49|2|2 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.119.48.47.48.47.50|2|3 +1.3.6.1.4.1.9.9.276.1.6.1.1.2.7.84.119.48.47.48.47.51|2|4 +1.3.6.1.4.1.9.9.300.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.300.1.1.2.0|4| +1.3.6.1.4.1.9.9.300.1.1.3.0|4x|7363682d736d6172742d6c6963656e73696e6740636973636f2e636f6d +1.3.6.1.4.1.9.9.300.1.1.4.0|4| +1.3.6.1.4.1.9.9.300.1.1.5.0|4| +1.3.6.1.4.1.9.9.300.1.1.6.0|4| +1.3.6.1.4.1.9.9.300.1.1.7.0|4| +1.3.6.1.4.1.9.9.300.1.1.12.1.2.10.67.105.115.99.111.84.65.67.45.49|2|1 +1.3.6.1.4.1.9.9.300.1.1.12.1.3.10.67.105.115.99.111.84.65.67.45.49|66|1000000 +1.3.6.1.4.1.9.9.300.1.1.12.1.4.10.67.105.115.99.111.84.65.67.45.49|2|3 +1.3.6.1.4.1.9.9.300.1.1.12.1.5.10.67.105.115.99.111.84.65.67.45.49|2|1 +1.3.6.1.4.1.9.9.300.1.1.12.1.7.10.67.105.115.99.111.84.65.67.45.49|4x|7d +1.3.6.1.4.1.9.9.300.1.1.12.1.8.10.67.105.115.99.111.84.65.67.45.49|2|1 +1.3.6.1.4.1.9.9.300.1.1.12.1.9.10.67.105.115.99.111.84.65.67.45.49|66|3145728 +1.3.6.1.4.1.9.9.300.1.1.13.0|66|0 +1.3.6.1.4.1.9.9.300.1.1.14.1.2.10.67.105.115.99.111.84.65.67.45.49.1|4x|63616c6c686f6d6540636973636f2e636f6d +1.3.6.1.4.1.9.9.300.1.1.14.1.2.10.67.105.115.99.111.84.65.67.45.49.2|4| +1.3.6.1.4.1.9.9.300.1.1.14.1.3.10.67.105.115.99.111.84.65.67.45.49.1|2|1 +1.3.6.1.4.1.9.9.300.1.1.14.1.3.10.67.105.115.99.111.84.65.67.45.49.2|2|1 +1.3.6.1.4.1.9.9.300.1.1.14.1.4.10.67.105.115.99.111.84.65.67.45.49.1|2|1 +1.3.6.1.4.1.9.9.300.1.1.14.1.4.10.67.105.115.99.111.84.65.67.45.49.2|2|2 +1.3.6.1.4.1.9.9.300.1.1.14.1.5.10.67.105.115.99.111.84.65.67.45.49.1|4| +1.3.6.1.4.1.9.9.300.1.1.14.1.5.10.67.105.115.99.111.84.65.67.45.49.2|4x|68747470733a2f2f746f6f6c732e636973636f2e636f6d2f6974732f736572766963652f6f646463652f73657276696365732f4444434553657276696365 +1.3.6.1.4.1.9.9.300.1.1.15.0|4| +1.3.6.1.4.1.9.9.300.1.1.16.0|4| +1.3.6.1.4.1.9.9.300.1.1.21.0|66|5 +1.3.6.1.4.1.9.9.300.1.1.24.0|2|2 +1.3.6.1.4.1.9.9.300.1.1.25.1.2.1|4|configuration +1.3.6.1.4.1.9.9.300.1.1.25.1.2.2|4|crash +1.3.6.1.4.1.9.9.300.1.1.25.1.2.3|4|diagnostic +1.3.6.1.4.1.9.9.300.1.1.25.1.2.4|4|environment +1.3.6.1.4.1.9.9.300.1.1.25.1.2.5|4|inventory +1.3.6.1.4.1.9.9.300.1.1.25.1.2.6|4|snapshot +1.3.6.1.4.1.9.9.300.1.1.25.1.2.7|4|syslog +1.3.6.1.4.1.9.9.300.1.1.25.1.3.1|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.2|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.3|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.4|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.5|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.6|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.3.7|2|1 +1.3.6.1.4.1.9.9.300.1.1.25.1.4.1|4|H +1.3.6.1.4.1.9.9.300.1.1.25.1.4.2|4x|88 +1.3.6.1.4.1.9.9.300.1.1.25.1.4.3|4x|84 +1.3.6.1.4.1.9.9.300.1.1.25.1.4.4|4x|80 +1.3.6.1.4.1.9.9.300.1.1.25.1.4.5|4|H +1.3.6.1.4.1.9.9.300.1.1.25.1.4.6|4|K +1.3.6.1.4.1.9.9.300.1.1.25.1.4.7|4x|20 +1.3.6.1.4.1.9.9.300.1.1.30.1.1.1.10.67.105.115.99.111.84.65.67.45.49.2|2|1 +1.3.6.1.4.1.9.9.300.1.1.30.1.1.1.10.67.105.115.99.111.84.65.67.45.49.3|2|5 +1.3.6.1.4.1.9.9.300.1.1.30.1.1.1.10.67.105.115.99.111.84.65.67.45.49.4|2|5 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.1.10.67.105.115.99.111.84.65.67.45.49.1|2|3 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.1.10.67.105.115.99.111.84.65.67.45.49.5|2|3 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.3.10.67.105.115.99.111.84.65.67.45.49.1|66|10 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.3.10.67.105.115.99.111.84.65.67.45.49.5|66|10 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.4.10.67.105.115.99.111.84.65.67.45.49.1|66|10 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.4.10.67.105.115.99.111.84.65.67.45.49.5|66|10 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.5.10.67.105.115.99.111.84.65.67.45.49.1|66|36 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.5.10.67.105.115.99.111.84.65.67.45.49.5|66|21 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.6.10.67.105.115.99.111.84.65.67.45.49.1|2|1 +1.3.6.1.4.1.9.9.300.1.1.30.2.1.6.10.67.105.115.99.111.84.65.67.45.49.5|2|1 +1.3.6.1.4.1.9.9.300.1.1.30.3.0|66|5 +1.3.6.1.4.1.9.9.300.1.1.30.4.1.2.10.67.105.115.99.111.84.65.67.45.49.7.46.42|2|6 +1.3.6.1.4.1.9.9.300.1.1.30.4.1.3.10.67.105.115.99.111.84.65.67.45.49.7.46.42|2|2 +1.3.6.1.4.1.9.9.300.1.1.30.4.1.4.10.67.105.115.99.111.84.65.67.45.49.7.46.42|2|1 +1.3.6.1.4.1.9.9.300.1.1.30.5.0|66|0 +1.3.6.1.4.1.9.9.300.1.1.30.7.1.1.10.67.105.115.99.111.84.65.67.45.49.1|2|2 +1.3.6.1.4.1.9.9.300.1.1.30.7.1.1.10.67.105.115.99.111.84.65.67.45.49.5|2|1 +1.3.6.1.4.1.9.9.300.1.1.30.7.1.2.10.67.105.115.99.111.84.65.67.45.49.1|2|2 +1.3.6.1.4.1.9.9.300.1.1.30.7.1.2.10.67.105.115.99.111.84.65.67.45.49.5|2|2 +1.3.6.1.4.1.9.9.300.1.1.31.1.1.1.10.67.105.115.99.111.84.65.67.45.49|2|2 +1.3.6.1.4.1.9.9.300.1.1.31.1.1.2.10.67.105.115.99.111.84.65.67.45.49|4x|20 +1.3.6.1.4.1.9.9.300.1.1.31.1.1.3.10.67.105.115.99.111.84.65.67.45.49|2|1 +1.3.6.1.4.1.9.9.300.1.1.31.1.1.4.10.67.105.115.99.111.84.65.67.45.49|4x|43616c6c20486f6d65207465737420726573756c7420756e6b6e6f776e +1.3.6.1.4.1.9.9.300.1.1.32.1.0|2|2 +1.3.6.1.4.1.9.9.300.1.1.34.0|66|20 +1.3.6.1.4.1.9.9.300.1.1.35.0|2|0 +1.3.6.1.4.1.9.9.300.1.1.36.0|4| +1.3.6.1.4.1.9.9.300.1.1.37.0|66|8080 +1.3.6.1.4.1.9.9.300.1.1.38.0|2|2 +1.3.6.1.4.1.9.9.300.1.2.1.0|67|250978492 +1.3.6.1.4.1.9.9.300.1.2.2.0|65|3 +1.3.6.1.4.1.9.9.300.1.2.3.0|70|3 +1.3.6.1.4.1.9.9.300.1.2.4.0|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.1.1|70|3 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.1.3|70|3 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.4.1|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.3.4.3|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.1.1|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.1.3|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.4.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.1.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.1.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.5.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.1.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.1.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.6.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.1.1|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.1.3|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.4.1|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.7.4.3|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.1.1|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.1.3|70|1 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.8.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.1.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.1.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.9.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.1.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.1.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.10.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.1.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.1.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.1.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.2.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.2.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.2.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.3.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.3.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.3.3|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.4.1|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.4.2|70|0 +1.3.6.1.4.1.9.9.300.1.2.5.1.11.4.3|70|0 +1.3.6.1.4.1.9.9.300.1.3.1.0|67|0 +1.3.6.1.4.1.9.9.300.1.3.2.0|2|2 +1.3.6.1.4.1.9.9.300.1.3.3.0|2|1 +1.3.6.1.4.1.9.9.300.1.3.5.0|2|1 +1.3.6.1.4.1.9.9.300.1.4.1.1.0|66|1 +1.3.6.1.4.1.9.9.300.1.4.1.2.0|4| +1.3.6.1.4.1.9.9.300.1.4.1.3.0|2|0 +1.3.6.1.4.1.9.9.300.1.4.1.4.0|2|2 +1.3.6.1.4.1.9.9.300.1.4.2.1.0|4| +1.3.6.1.4.1.9.9.300.1.4.2.2.0|2|1 +1.3.6.1.4.1.9.9.300.1.4.2.3.0|4| +1.3.6.1.4.1.9.9.300.1.4.2.4.0|2|2 +1.3.6.1.4.1.9.9.300.1.4.2.5.0|4| +1.3.6.1.4.1.9.9.300.1.4.2.6.0|2|2 +1.3.6.1.4.1.9.9.300.1.5.1.0|4| +1.3.6.1.4.1.9.9.300.1.5.2.0|2|2 +1.3.6.1.4.1.9.9.300.1.5.3.0|4| +1.3.6.1.4.1.9.9.300.1.5.4.0|4| +1.3.6.1.4.1.9.9.300.1.5.5.0|2|2 +1.3.6.1.4.1.9.9.300.1.6.1.0|4| +1.3.6.1.4.1.9.9.300.1.7.1.0|2|0 +1.3.6.1.4.1.9.9.300.1.7.2.0|4| +1.3.6.1.4.1.9.9.300.1.7.3.0|2|0 +1.3.6.1.4.1.9.9.300.1.10.1.0|2|1 +1.3.6.1.4.1.9.9.300.1.11.1.0|2|2 +1.3.6.1.4.1.9.9.300.1.13.1.0|2|2 +1.3.6.1.4.1.9.9.300.1.13.2.0|4|callhome +1.3.6.1.4.1.9.9.312.1.1.1.0|2|2 +1.3.6.1.4.1.9.9.312.1.1.2.0|66|3 +1.3.6.1.4.1.9.9.312.1.2.3.1.3.1.1|2|4 +1.3.6.1.4.1.9.9.312.1.2.3.1.4.1.1|6|0.0 +1.3.6.1.4.1.9.9.312.1.2.3.1.5.1.1|6|0.0 +1.3.6.1.4.1.9.9.312.1.2.3.1.6.1.1|66|0 +1.3.6.1.4.1.9.9.312.1.2.3.1.7.1.1|6|0.0 +1.3.6.1.4.1.9.9.312.1.2.3.1.8.1.1|2|1 +1.3.6.1.4.1.9.9.326.1.1.1.0|2|2 +1.3.6.1.4.1.9.9.350.1.1.3.1.2.1|4x|444941475f53554343455353 +1.3.6.1.4.1.9.9.350.1.1.3.1.2.2|4x|444941475f4641494c555245 +1.3.6.1.4.1.9.9.350.1.1.3.1.2.3|4x|444941475f4e4f545f535550504f5254 +1.3.6.1.4.1.9.9.350.1.1.3.1.2.4|4x|444941475f534b4950504544 +1.3.6.1.4.1.9.9.350.1.2.1.0|2|2 +1.3.6.1.4.1.9.9.350.1.4.1.0|66|0 +1.3.6.1.4.1.9.9.350.1.4.2.0|2|1 +1.3.6.1.4.1.9.9.350.1.4.3.0|66|1 +1.3.6.1.4.1.9.9.350.1.7.1.0|2|2 +1.3.6.1.4.1.9.9.350.1.8.1.0|66|500 +1.3.6.1.4.1.9.9.350.1.8.2.0|66|0 +1.3.6.1.4.1.9.9.350.1.8.3.0|66|1 +1.3.6.1.4.1.9.9.350.1.9.1.0|2|2 +1.3.6.1.4.1.9.9.350.1.9.2.0|2|2 +1.3.6.1.4.1.9.9.350.1.9.3.0|2|2 +1.3.6.1.4.1.9.9.350.1.9.4.0|2|2 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.1|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.2|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.3|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.4|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.5|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.6|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.7|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.8|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.9|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.10|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.11|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.1.12|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.1|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.2|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.3|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.4|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.5|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.6|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.7|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.8|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.9|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.10|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.11|2|0 +1.3.6.1.4.1.9.9.387.1.1.1.1.2.12|2|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.0|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.1|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.2|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.3|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.4|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.5|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.9|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.10|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.11|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.12|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.13|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.14|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.15|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.2.23|2|2 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.0|66|200000 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.1|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.2|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.9|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.10|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.15|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.3.23|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.0|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.1|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.2|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.9|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.10|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.15|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.4.23|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.0|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.1|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.2|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.9|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.10|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.15|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.5.23|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.0|66|30 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.1|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.2|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.9|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.10|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.15|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.6.23|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.0|66|15 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.1|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.2|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.9|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.10|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.15|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.7.23|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.8.3|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.8.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.8.11|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.8.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.8.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.9.4|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.9.5|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.9.12|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.9.13|66|0 +1.3.6.1.4.1.9.9.387.1.1.2.1.9.14|66|0 +1.3.6.1.4.1.9.9.387.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.0|66|5 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.1|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.2|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.3|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.4|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.5|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.9|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.10|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.11|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.12|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.13|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.14|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.15|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.1.23|66|0 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.0|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.1|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.2|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.3|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.4|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.5|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.9|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.10|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.11|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.12|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.13|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.14|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.15|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.2.23|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.0|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.1|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.2|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.3|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.4|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.5|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.9|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.10|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.11|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.12|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.13|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.14|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.15|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.3.23|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.1|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.2|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.3|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.4|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.5|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.9|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.10|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.11|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.12|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.13|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.14|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.15|2|2 +1.3.6.1.4.1.9.9.387.1.2.1.1.4.23|2|2 +1.3.6.1.4.1.9.9.387.1.2.2.0|66|2 +1.3.6.1.4.1.9.9.387.1.4.1.0|65|0 +1.3.6.1.4.1.9.9.387.1.4.2.0|65|0 +1.3.6.1.4.1.9.9.387.1.4.3.0|65|0 +1.3.6.1.4.1.9.9.387.1.4.4.0|65|0 +1.3.6.1.4.1.9.9.387.1.4.5.0|65|0 +1.3.6.1.4.1.9.9.387.1.4.6.0|65|0 +1.3.6.1.4.1.9.9.387.1.5.1.0|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.387.1.5.2.0|66|4294967295 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.1|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.2|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.3|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.4|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.5|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.6|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.7|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.8|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.9|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.10|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.11|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.12|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.13|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.14|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.15|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.16|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.17|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.18|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.19|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.20|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.21|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.2.22|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.1|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.2|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.3|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.4|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.5|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.6|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.7|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.8|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.9|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.10|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.11|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.12|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.13|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.14|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.15|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.16|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.17|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.18|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.19|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.20|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.21|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.3.22|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.1|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.2|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.3|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.4|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.5|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.6|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.7|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.8|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.9|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.10|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.11|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.12|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.13|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.14|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.15|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.16|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.17|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.18|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.19|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.20|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.21|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.4.22|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.1|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.2|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.3|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.4|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.5|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.6|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.7|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.8|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.9|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.10|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.11|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.12|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.13|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.14|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.15|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.16|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.17|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.18|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.19|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.20|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.21|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.5.22|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.1|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.2|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.3|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.4|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.5|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.6|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.7|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.8|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.9|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.10|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.11|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.12|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.13|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.14|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.15|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.16|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.17|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.18|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.19|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.20|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.21|70|0 +1.3.6.1.4.1.9.9.387.1.5.3.1.6.22|70|0 +1.3.6.1.4.1.9.9.387.1.6.1.0|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.2.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.2.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.3.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.3.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.4.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.2.1.4.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.0|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.1|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.2|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.3|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.4|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.5|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.9|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.10|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.11|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.12|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.13|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.14|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.15|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.1.23|2|2 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.0|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.3|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.4|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.5|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.9|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.10|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.11|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.12|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.13|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.14|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.15|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.2.23|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.0|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.3|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.4|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.5|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.9|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.10|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.11|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.12|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.13|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.14|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.15|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.3.23|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.0|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.3|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.4|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.5|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.9|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.10|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.11|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.12|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.13|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.14|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.15|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.4.23|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.0|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.1|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.2|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.3|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.4|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.5|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.9|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.10|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.11|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.12|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.13|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.14|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.15|66|0 +1.3.6.1.4.1.9.9.387.1.6.3.1.5.23|66|0 +1.3.6.1.4.1.9.9.412.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.412.1.1.2.0|4x|31302e3138332e33372e3837 +1.3.6.1.4.1.9.9.451.1.1.1.0|2|300 +1.3.6.1.4.1.9.9.451.1.1.2.0|2|30 +1.3.6.1.4.1.9.9.451.1.1.3.0|2|300 +1.3.6.1.4.1.9.9.451.1.2.1.1.2.1|65|0 +1.3.6.1.4.1.9.9.451.1.2.1.1.3.1|66|0 +1.3.6.1.4.1.9.9.492.1.7.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.492.1.7.1.1.1.2|2|1 +1.3.6.1.4.1.9.9.492.1.7.1.1.2.1|66|10 +1.3.6.1.4.1.9.9.492.1.7.1.1.2.2|66|10 +1.3.6.1.4.1.9.9.492.1.7.1.1.3.1|66|300 +1.3.6.1.4.1.9.9.492.1.7.1.1.3.2|66|300 +1.3.6.1.4.1.9.9.492.1.7.1.1.4.1|2|2 +1.3.6.1.4.1.9.9.492.1.7.1.1.4.2|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.1|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.2|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.3|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.4|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.1.5|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.1|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.2|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.3|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.2.2.5|2|2 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.1|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.2|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.3|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.4|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.1.5|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.1|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.2|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.3|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.3.2.5|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.1|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.2|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.3|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.4|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.1.5|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.1|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.2|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.3|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.4.2.5|66|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.4|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.1.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.5.2.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.4|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.1.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.6.2.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.4|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.1.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.7.2.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.4|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.1.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.1|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.2|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.3|65|0 +1.3.6.1.4.1.9.9.492.1.7.2.1.8.2.5|65|0 +1.3.6.1.4.1.9.9.492.1.7.4.0|67|0 +1.3.6.1.4.1.9.9.492.1.9.1.0|2|2 +1.3.6.1.4.1.9.9.492.1.9.2.0|2|2 +1.3.6.1.4.1.9.9.492.1.9.3.0|2|2 +1.3.6.1.4.1.9.9.492.1.9.4.0|2|0 +1.3.6.1.4.1.9.9.492.1.9.5.0|2|2 +1.3.6.1.4.1.9.9.510.1.1.1.0|4| +1.3.6.1.4.1.9.9.510.1.5.1.0|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.2.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.3.1|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.2|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.3|4x|4e41495f49545f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.4|4x|4e415f47554553545f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.5|4x|5341505f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.6|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.7|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.3.8|4x|4e41495f5450455f574c414e +1.3.6.1.4.1.9.9.512.1.1.1.1.4.1|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.4.2|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.512.1.1.1.1.4.3|4x|4e41492d4954 +1.3.6.1.4.1.9.9.512.1.1.1.1.4.4|4x|4e41204775657374 +1.3.6.1.4.1.9.9.512.1.1.1.1.4.5|4|SAP +1.3.6.1.4.1.9.9.512.1.1.1.1.4.6|4|TIME +1.3.6.1.4.1.9.9.512.1.1.1.1.4.7|4|OTN +1.3.6.1.4.1.9.9.512.1.1.1.1.4.8|4x|4e41492d545045 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.1|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.2|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.3|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.4|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.5|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.6|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.7|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.6.8|2|3 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.7.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.11.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.1|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.2|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.3|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.4|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.5|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.6|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.7|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.12.8|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.1|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.2|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.3|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.4|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.5|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.6|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.7|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.13.8|66|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.14.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.15.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.18.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.19.1|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.2|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.3|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.4|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.5|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.6|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.7|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.19.8|4|none +1.3.6.1.4.1.9.9.512.1.1.1.1.20.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.20.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.1|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.2|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.3|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.4|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.5|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.6|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.7|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.22.8|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.1|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.2|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.3|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.4|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.5|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.6|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.7|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.23.8|4x|06 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.1|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.2|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.3|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.4|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.5|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.6|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.7|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.24.8|66|100 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.26.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.29.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.30.1|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.2|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.3|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.4|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.5|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.6|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.7|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.30.8|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.32.1|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.2|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.3|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.4|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.5|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.6|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.7|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.32.8|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.65.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.66.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.67.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.1|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.2|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.3|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.4|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.5|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.6|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.7|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.73.8|66|200 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.1|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.2|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.3|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.4|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.5|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.6|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.7|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.74.8|66|40 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.84.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.85.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.86.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.87.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.93.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.96.1|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.2|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.3|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.4|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.5|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.6|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.7|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.96.8|4| +1.3.6.1.4.1.9.9.512.1.1.1.1.97.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.97.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.1|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.2|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.3|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.4|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.5|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.6|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.7|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.98.8|66|0 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.99.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.1.1.100.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.2.1.2.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.4.1.2.1|4x|4e41495f495345 +1.3.6.1.4.1.9.9.512.1.1.4.1.2.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.2.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.2.4|4x|4e41495f495345 +1.3.6.1.4.1.9.9.512.1.1.4.1.2.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.2.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.2.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.2.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.3.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.3.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.3.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.3.4|4x|4953455f415554485a +1.3.6.1.4.1.9.9.512.1.1.4.1.3.5|4x|5341505f415554485a +1.3.6.1.4.1.9.9.512.1.1.4.1.3.6|4x|5341505f415554485a +1.3.6.1.4.1.9.9.512.1.1.4.1.3.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.3.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.4|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.4.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.5.1|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.2|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.3|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.4|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.5|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.6|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.7|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.5.8|4|QosUpStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.1|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.2|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.3|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.4|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.5|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.6|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.7|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.6.8|4|QosDownStream +1.3.6.1.4.1.9.9.512.1.1.4.1.12.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.4|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.12.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.4|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.15.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.4|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.16.8|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.1|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.2|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.3|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.4|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.5|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.6|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.7|4| +1.3.6.1.4.1.9.9.512.1.1.4.1.17.8|4| +1.3.6.1.4.1.9.9.512.1.1.9.1.1.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.1.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.2.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.3.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.4.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.5.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.3|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.4|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.5|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.6|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.7|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.9.8|2|2 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.3|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.4|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.5|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.6|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.7|2|1 +1.3.6.1.4.1.9.9.512.1.1.9.1.10.8|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.49.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.49.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.50.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.51.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.52.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.53.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.53.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.54.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.55.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.55.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.56.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.1.1.56.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.49.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.49.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.50.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.51.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.52.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.53.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.53.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.54.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.55.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.55.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.56.1|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.2.1.56.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.49.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.49.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.50.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.51.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.52.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.53.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.53.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.54.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.55.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.55.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.56.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.3.1.56.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.49.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.49.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.50.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.51.2|2|1 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.52.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.53.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.53.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.54.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.55.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.55.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.56.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.4.1.56.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.49.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.49.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.50.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.51.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.52.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.53.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.53.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.54.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.55.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.55.2|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.56.1|2|2 +1.3.6.1.4.1.9.9.512.1.1.10.1.5.1.56.2|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.0.223.29.42.246.64|4x|00df1d2af640 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.28.170.96|4x|087b871caa60 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.95.147.160|4x|18f9355f93a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.102.134.96|4x|18f935668660 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.180.222.49.102.89.160|4x|b4de316659a0 +1.3.6.1.4.1.9.9.513.1.1.1.1.2.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.0.60.16.104.153.160|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.0.60.16.104.154.224|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.0.223.29.42.246.64|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.69.209.213.189.0|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.28.30.64|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.28.170.96|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.28.247.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.9.128|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.160.64|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.164.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.164.64|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.167.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.205.32|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.212.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.230.64|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.8.123.135.29.230.96|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.95.147.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.97.136.32|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.102.87.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.102.134.96|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.103.175.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.225.4.192|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.24.249.53.225.42.224|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.28.209.224.173.249.0|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.28.209.224.174.126.128|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.36.54.218.80.92.0|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.36.54.218.80.101.224|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.36.54.218.80.103.64|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.36.54.218.80.109.224|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.52.22.96|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.52.31.224|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.56.69.96|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.59.119.32|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.59.131.224|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.61.47.192|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.61.56.128|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.61.56.192|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.69.128.160|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.73.197.128|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.73.198.0|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.73.198.96|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.76.139.32|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.40.172.158.77.225.160|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.6.101.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.6.111.192|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.7.225.128|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.8.101.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.8.178.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.9.132.128|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.15.230.128|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.184.54.32|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.88.139.28.184.116.64|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.112.105.90.156.95.64|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.180.222.49.102.89.160|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.3.244.219.230.228.7.192|66|3 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.0.60.16.104.153.160|66|192 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.0.60.16.104.154.224|66|33 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.0.223.29.42.246.64|66|190 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.69.209.213.189.0|66|53 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.28.30.64|66|131 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.28.170.96|66|98 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.28.247.160|66|146 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.9.128|66|22 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.160.64|66|75 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.164.0|66|142 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.164.64|66|92 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.167.160|66|235 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.205.32|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.212.160|66|158 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.230.64|66|144 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.8.123.135.29.230.96|66|211 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.95.147.160|66|185 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.97.136.32|66|232 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.102.87.0|66|39 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.102.134.96|66|123 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.103.175.0|66|244 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.225.4.192|66|96 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.24.249.53.225.42.224|66|138 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.28.209.224.173.249.0|66|103 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.28.209.224.174.126.128|66|140 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.36.54.218.80.92.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.36.54.218.80.101.224|66|51 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.36.54.218.80.103.64|66|178 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.36.54.218.80.109.224|66|168 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.52.22.96|66|201 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.52.31.224|66|50 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.56.69.96|66|85 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.59.119.32|66|26 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.59.131.224|66|205 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.61.47.192|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.61.56.128|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.61.56.192|66|132 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.69.128.160|66|188 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.73.197.128|66|226 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.73.198.0|66|228 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.73.198.96|66|189 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.76.139.32|66|166 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.40.172.158.77.225.160|66|163 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.6.101.160|66|82 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.6.111.192|66|48 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.7.225.128|66|14 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.8.101.0|66|24 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.8.178.160|66|196 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.9.132.128|66|58 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.15.230.128|66|77 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.184.54.32|66|152 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.88.139.28.184.116.64|66|210 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.112.105.90.156.95.64|66|186 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.180.222.49.102.89.160|66|157 +1.3.6.1.4.1.9.9.513.1.1.1.1.4.244.219.230.228.7.192|66|49 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.0.60.16.104.153.160|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.0.60.16.104.154.224|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.0.223.29.42.246.64|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.69.209.213.189.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.28.30.64|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.28.170.96|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.28.247.160|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.9.128|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.160.64|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.164.0|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.164.64|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.167.160|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.205.32|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.212.160|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.230.64|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.8.123.135.29.230.96|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.95.147.160|4x|4d41522d5453442d4f4646432d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.97.136.32|4x|4d41522d43484d502d30382d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.102.87.0|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.102.134.96|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.103.175.0|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.225.4.192|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.24.249.53.225.42.224|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.28.209.224.173.249.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.28.209.224.174.126.128|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.36.54.218.80.92.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.36.54.218.80.101.224|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.36.54.218.80.103.64|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.36.54.218.80.109.224|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.52.22.96|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.52.31.224|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.56.69.96|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.59.119.32|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.59.131.224|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.61.47.192|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.61.56.128|4x|4d41525f43484d505f30315f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.61.56.192|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.69.128.160|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.73.197.128|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.73.198.0|4x|4d41525f4c4f475f4f57485f41505f34 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.73.198.96|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.76.139.32|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.40.172.158.77.225.160|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.6.101.160|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.6.111.192|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.7.225.128|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.8.101.0|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.8.178.160|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.9.132.128|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.15.230.128|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.184.54.32|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.88.139.28.184.116.64|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.112.105.90.156.95.64|4x|4d41525f43484d505f30355f4150 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.180.222.49.102.89.160|4x|4d41525f41444d494e5f4255494c44494e47 +1.3.6.1.4.1.9.9.513.1.1.1.1.5.244.219.230.228.7.192|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.0.60.16.104.153.160|67|120181500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.0.60.16.104.154.224|67|120193300 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.0.223.29.42.246.64|67|120184600 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.69.209.213.189.0|67|120186700 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.28.30.64|67|120204000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.28.170.96|67|1281670300 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.28.247.160|67|120204100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.9.128|67|120203900 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.160.64|67|120204100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.164.0|67|120204200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.164.64|67|120204000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.167.160|67|120204000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.205.32|67|120204200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.212.160|67|120203800 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.230.64|67|120204000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.8.123.135.29.230.96|67|120203900 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.95.147.160|67|120185400 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.97.136.32|67|120197800 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.102.87.0|67|120204200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.102.134.96|67|65554900 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.103.175.0|67|120204200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.225.4.192|67|120204100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.24.249.53.225.42.224|67|120204100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.28.209.224.173.249.0|67|120173400 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.28.209.224.174.126.128|67|120181500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.36.54.218.80.92.0|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.36.54.218.80.101.224|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.36.54.218.80.103.64|67|120184000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.36.54.218.80.109.224|67|120183800 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.52.22.96|67|120190000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.52.31.224|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.56.69.96|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.59.119.32|67|120205500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.59.131.224|67|1281359300 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.61.47.192|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.61.56.128|67|120205500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.61.56.192|67|120205800 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.69.128.160|67|120190000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.73.197.128|67|120199300 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.73.198.0|67|120190000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.73.198.96|67|120205700 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.76.139.32|67|120190000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.40.172.158.77.225.160|67|120205500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.6.101.160|67|2644848100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.6.111.192|67|2644856500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.7.225.128|67|118640100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.8.101.0|67|118641100 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.8.178.160|67|118640800 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.9.132.128|67|118640400 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.15.230.128|67|2644843900 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.184.54.32|67|2644847500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.88.139.28.184.116.64|67|2630097000 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.112.105.90.156.95.64|67|120205700 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.180.222.49.102.89.160|67|608006500 +1.3.6.1.4.1.9.9.513.1.1.1.1.6.244.219.230.228.7.192|67|1281359200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.0.60.16.104.153.160|67|120170200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.0.60.16.104.154.224|67|120178800 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.0.223.29.42.246.64|67|120170100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.69.209.213.189.0|67|65543300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.28.30.64|67|120185900 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.28.170.96|67|454347400 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.28.247.160|67|120186200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.9.128|67|120186000 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.160.64|67|120186100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.164.0|67|120186300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.164.64|67|120186300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.167.160|67|120186300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.205.32|67|120186500 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.212.160|67|120185600 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.230.64|67|120186000 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.8.123.135.29.230.96|67|120186200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.95.147.160|67|120162900 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.97.136.32|67|120180000 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.102.87.0|67|120186100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.102.134.96|67|65533100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.103.175.0|67|120186700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.225.4.192|67|120186100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.24.249.53.225.42.224|67|120186100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.28.209.224.173.249.0|67|120162100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.28.209.224.174.126.128|67|120170300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.36.54.218.80.92.0|67|65552300 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.36.54.218.80.101.224|67|65552700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.36.54.218.80.103.64|67|120165000 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.36.54.218.80.109.224|67|120164200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.52.22.96|67|120171200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.52.31.224|67|65552500 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.56.69.96|67|65552100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.59.119.32|67|120189800 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.59.131.224|67|65551200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.61.47.192|67|65552700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.61.56.128|67|120187500 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.61.56.192|67|120190000 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.69.128.160|67|120170800 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.73.197.128|67|120179700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.73.198.0|67|120170400 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.73.198.96|67|120189700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.76.139.32|67|120169700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.40.172.158.77.225.160|67|120189800 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.6.101.160|67|120182600 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.6.111.192|67|120181700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.7.225.128|67|118622700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.8.101.0|67|118623700 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.8.178.160|67|118623100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.9.132.128|67|118622800 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.15.230.128|67|120182100 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.184.54.32|67|120182400 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.88.139.28.184.116.64|67|120181500 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.112.105.90.156.95.64|67|120185900 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.180.222.49.102.89.160|67|454347200 +1.3.6.1.4.1.9.9.513.1.1.1.1.7.244.219.230.228.7.192|67|65552300 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.0.60.16.104.153.160|67|11200 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.0.60.16.104.154.224|67|14400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.0.223.29.42.246.64|67|14400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.69.209.213.189.0|67|11600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.28.30.64|67|18000 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.28.170.96|67|135000 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.28.247.160|67|17800 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.9.128|67|17800 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.160.64|67|17900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.164.0|67|17800 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.164.64|67|17600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.167.160|67|17600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.205.32|67|17600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.212.160|67|18100 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.230.64|67|17900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.8.123.135.29.230.96|67|17600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.95.147.160|67|22400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.97.136.32|67|17700 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.102.87.0|67|18000 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.102.134.96|67|21700 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.103.175.0|67|17400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.225.4.192|67|17900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.24.249.53.225.42.224|67|17900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.28.209.224.173.249.0|67|11200 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.28.209.224.174.126.128|67|11100 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.36.54.218.80.92.0|67|1201500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.36.54.218.80.101.224|67|1201500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.36.54.218.80.103.64|67|18900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.36.54.218.80.109.224|67|19500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.52.22.96|67|18700 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.52.31.224|67|1201500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.56.69.96|67|1201600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.59.119.32|67|15600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.59.131.224|67|1201600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.61.47.192|67|1201600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.61.56.128|67|17900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.61.56.192|67|15700 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.69.128.160|67|19100 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.73.197.128|67|19500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.73.198.0|67|19500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.73.198.96|67|15900 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.76.139.32|67|20200 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.40.172.158.77.225.160|67|15600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.6.101.160|67|64400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.6.111.192|67|64300 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.7.225.128|67|17300 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.8.101.0|67|17300 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.8.178.160|67|17600 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.9.132.128|67|17500 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.15.230.128|67|64400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.184.54.32|67|64400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.88.139.28.184.116.64|67|64400 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.112.105.90.156.95.64|67|19700 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.180.222.49.102.89.160|67|135100 +1.3.6.1.4.1.9.9.513.1.1.1.1.8.244.219.230.228.7.192|67|1201600 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.10.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.0.60.16.104.153.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.0.60.16.104.154.224|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.0.223.29.42.246.64|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.69.209.213.189.0|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.28.30.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.28.170.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.28.247.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.9.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.160.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.164.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.164.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.167.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.205.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.212.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.230.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.8.123.135.29.230.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.95.147.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.97.136.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.102.87.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.102.134.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.103.175.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.225.4.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.24.249.53.225.42.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.28.209.224.173.249.0|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.28.209.224.174.126.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.36.54.218.80.92.0|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.36.54.218.80.101.224|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.36.54.218.80.103.64|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.36.54.218.80.109.224|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.52.22.96|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.52.31.224|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.56.69.96|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.59.119.32|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.59.131.224|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.61.47.192|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.61.56.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.61.56.192|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.69.128.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.73.197.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.73.198.0|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.73.198.96|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.76.139.32|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.40.172.158.77.225.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.6.101.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.6.111.192|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.7.225.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.8.101.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.8.178.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.9.132.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.15.230.128|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.184.54.32|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.88.139.28.184.116.64|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.112.105.90.156.95.64|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.180.222.49.102.89.160|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.11.244.219.230.228.7.192|4x|0ab73464 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.12.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.0.60.16.104.153.160|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.0.60.16.104.154.224|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.0.223.29.42.246.64|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.69.209.213.189.0|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.28.30.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.28.170.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.28.247.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.9.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.160.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.164.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.164.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.167.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.205.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.212.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.230.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.8.123.135.29.230.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.95.147.160|4x|0ab7ce64 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.97.136.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.102.87.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.102.134.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.103.175.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.225.4.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.24.249.53.225.42.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.28.209.224.173.249.0|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.28.209.224.174.126.128|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.36.54.218.80.92.0|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.36.54.218.80.101.224|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.36.54.218.80.103.64|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.36.54.218.80.109.224|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.52.22.96|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.52.31.224|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.56.69.96|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.59.119.32|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.59.131.224|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.61.47.192|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.61.56.128|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.61.56.192|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.69.128.160|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.73.197.128|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.73.198.0|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.73.198.96|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.76.139.32|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.40.172.158.77.225.160|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.6.101.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.6.111.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.7.225.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.8.101.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.8.178.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.9.132.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.15.230.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.184.54.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.88.139.28.184.116.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.112.105.90.156.95.64|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.180.222.49.102.89.160|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.13.244.219.230.228.7.192|4x|0ab70c39 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.14.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.0.60.16.104.153.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.0.60.16.104.154.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.0.223.29.42.246.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.69.209.213.189.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.28.30.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.28.170.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.28.247.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.9.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.160.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.164.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.164.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.167.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.205.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.212.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.230.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.8.123.135.29.230.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.95.147.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.97.136.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.102.87.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.102.134.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.103.175.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.225.4.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.24.249.53.225.42.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.28.209.224.173.249.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.28.209.224.174.126.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.36.54.218.80.92.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.36.54.218.80.101.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.36.54.218.80.103.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.36.54.218.80.109.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.52.22.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.52.31.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.56.69.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.59.119.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.59.131.224|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.61.47.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.61.56.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.61.56.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.69.128.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.73.197.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.73.198.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.73.198.96|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.76.139.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.40.172.158.77.225.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.6.101.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.6.111.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.7.225.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.8.101.0|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.8.178.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.9.132.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.15.230.128|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.184.54.32|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.88.139.28.184.116.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.112.105.90.156.95.64|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.180.222.49.102.89.160|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.15.244.219.230.228.7.192|4x|00000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.7.225.128|2|11 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.8.178.160|2|11 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.9.132.128|2|11 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.88.139.28.184.116.64|2|11 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.16.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.18.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.19.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.0.60.16.104.153.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.0.60.16.104.154.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.0.223.29.42.246.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.69.209.213.189.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.28.30.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.28.170.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.28.247.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.9.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.160.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.164.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.164.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.167.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.205.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.212.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.230.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.8.123.135.29.230.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.95.147.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.97.136.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.102.87.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.102.134.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.103.175.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.225.4.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.24.249.53.225.42.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.28.209.224.173.249.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.28.209.224.174.126.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.36.54.218.80.92.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.36.54.218.80.101.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.36.54.218.80.103.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.36.54.218.80.109.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.52.22.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.52.31.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.56.69.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.59.119.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.59.131.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.61.47.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.61.56.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.61.56.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.69.128.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.73.197.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.73.198.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.73.198.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.76.139.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.40.172.158.77.225.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.6.101.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.6.111.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.7.225.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.8.101.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.8.178.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.9.132.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.15.230.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.184.54.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.88.139.28.184.116.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.112.105.90.156.95.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.180.222.49.102.89.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.20.244.219.230.228.7.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.21.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.22.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.23.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.24.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.25.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.0.60.16.104.153.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.0.60.16.104.154.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.0.223.29.42.246.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.69.209.213.189.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.28.30.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.28.170.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.28.247.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.9.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.160.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.164.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.164.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.167.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.205.32|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.212.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.230.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.8.123.135.29.230.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.95.147.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.97.136.32|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.102.87.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.102.134.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.103.175.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.225.4.192|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.24.249.53.225.42.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.28.209.224.173.249.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.28.209.224.174.126.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.36.54.218.80.92.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.36.54.218.80.101.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.36.54.218.80.103.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.36.54.218.80.109.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.52.22.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.52.31.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.56.69.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.59.119.32|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.59.131.224|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.61.47.192|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.61.56.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.61.56.192|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.69.128.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.73.197.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.73.198.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.73.198.96|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.76.139.32|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.40.172.158.77.225.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.6.101.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.6.111.192|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.7.225.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.8.101.0|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.8.178.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.9.132.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.15.230.128|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.184.54.32|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.88.139.28.184.116.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.112.105.90.156.95.64|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.180.222.49.102.89.160|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.26.244.219.230.228.7.192|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.27.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.0.60.16.104.153.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.0.60.16.104.154.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.0.223.29.42.246.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.69.209.213.189.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.28.30.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.28.170.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.28.247.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.9.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.160.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.164.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.164.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.167.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.205.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.212.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.230.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.8.123.135.29.230.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.95.147.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.97.136.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.102.87.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.102.134.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.103.175.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.225.4.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.24.249.53.225.42.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.28.209.224.173.249.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.28.209.224.174.126.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.36.54.218.80.92.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.36.54.218.80.101.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.36.54.218.80.103.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.36.54.218.80.109.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.52.22.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.52.31.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.56.69.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.59.119.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.59.131.224|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.61.47.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.61.56.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.61.56.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.69.128.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.73.197.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.73.198.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.73.198.96|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.76.139.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.40.172.158.77.225.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.6.101.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.6.111.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.7.225.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.8.101.0|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.8.178.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.9.132.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.15.230.128|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.184.54.32|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.88.139.28.184.116.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.112.105.90.156.95.64|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.180.222.49.102.89.160|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.28.244.219.230.228.7.192|2|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.29.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.29.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.30.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.30.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.31.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.31.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.32.0.60.16.104.153.160|4x|522644204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.0.60.16.104.154.224|4x|4c6f67697374696373204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.0.223.29.42.246.64|4x|456e67696e656572696e67204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.69.209.213.189.0|4x|50726f64756374696f6e2041726561204d616e6720546f6d6173 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.28.30.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.28.170.96|4x|41646d696e204275696c64696e67 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.28.247.160|4x|4c6f6164696e6720426179 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.9.128|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.160.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.164.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.164.64|4x|4c6f6164696e6720426179 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.167.160|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.205.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.212.160|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.230.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.8.123.135.29.230.96|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.95.147.160|4x|545344204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.97.136.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.102.87.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.102.134.96|4x|524d504d204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.103.175.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.225.4.192|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.24.249.53.225.42.224|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.28.209.224.173.249.0|4x|50726f64756374696f6e204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.28.209.224.174.126.128|4x|5141204f6666696365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.36.54.218.80.92.0|4x|50726f64756374696f6e2053686f70666c6f6f72 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.36.54.218.80.101.224|4x|56696e6567617220526f6f6d +1.3.6.1.4.1.9.9.513.1.1.1.1.32.36.54.218.80.103.64|4x|456e7472616e6365204c6f626279 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.36.54.218.80.109.224|4x|50726f64756374696f6e204578706f72746c696e65 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.52.22.96|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.52.31.224|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.56.69.96|4x|524d504d2041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.59.119.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.59.131.224|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.61.47.192|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.61.56.128|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.61.56.192|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.69.128.160|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.73.197.128|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.73.198.0|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.73.198.96|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.76.139.32|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.40.172.158.77.225.160|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.6.101.160|4|Line7 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.6.111.192|4|SDI +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.7.225.128|4x|4c696e65203135 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.8.101.0|4x|4c696e65203333 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.8.178.160|4x|564d5320526f6f6d +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.9.132.128|4x|536f7973617563652056696e65676172 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.15.230.128|4x|4c696e65203344 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.184.54.32|4x|4d6978696e672041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.88.139.28.184.116.64|4x|4c696e65203341 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.112.105.90.156.95.64|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.180.222.49.102.89.160|4x|41646d696e204275696c64696e67 +1.3.6.1.4.1.9.9.513.1.1.1.1.32.244.219.230.228.7.192|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.33.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.34.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.0.60.16.104.153.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.0.60.16.104.154.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.0.223.29.42.246.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.69.209.213.189.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.28.30.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.28.170.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.28.247.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.9.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.160.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.164.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.164.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.167.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.205.32|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.212.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.230.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.8.123.135.29.230.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.95.147.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.97.136.32|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.102.87.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.102.134.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.103.175.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.225.4.192|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.24.249.53.225.42.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.28.209.224.173.249.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.28.209.224.174.126.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.36.54.218.80.92.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.36.54.218.80.101.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.36.54.218.80.103.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.36.54.218.80.109.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.52.22.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.52.31.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.56.69.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.59.119.32|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.59.131.224|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.61.47.192|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.61.56.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.61.56.192|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.69.128.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.73.197.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.73.198.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.73.198.96|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.76.139.32|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.40.172.158.77.225.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.6.101.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.6.111.192|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.7.225.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.8.101.0|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.8.178.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.9.132.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.15.230.128|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.184.54.32|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.88.139.28.184.116.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.112.105.90.156.95.64|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.180.222.49.102.89.160|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.35.244.219.230.228.7.192|2|1250 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.36.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.38.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.46.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.0.223.29.42.246.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.69.209.213.189.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.28.30.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.28.247.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.9.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.160.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.164.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.164.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.167.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.205.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.212.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.230.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.8.123.135.29.230.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.95.147.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.97.136.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.102.87.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.103.175.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.225.4.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.24.249.53.225.42.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.28.209.224.173.249.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.28.209.224.174.126.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.36.54.218.80.92.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.36.54.218.80.103.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.52.22.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.52.31.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.56.69.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.59.131.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.61.47.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.61.56.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.69.128.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.73.197.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.73.198.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.73.198.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.40.172.158.77.225.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.6.101.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.6.111.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.7.225.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.8.101.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.8.178.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.9.132.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.15.230.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.184.54.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.88.139.28.184.116.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.112.105.90.156.95.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.47.244.219.230.228.7.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.48.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.0.60.16.104.153.160|66|34 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.0.60.16.104.154.224|66|34 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.0.223.29.42.246.64|66|35 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.69.209.213.189.0|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.28.30.64|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.28.170.96|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.28.247.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.9.128|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.160.64|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.164.0|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.164.64|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.167.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.205.32|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.212.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.230.64|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.8.123.135.29.230.96|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.95.147.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.97.136.32|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.102.87.0|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.102.134.96|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.103.175.0|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.225.4.192|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.24.249.53.225.42.224|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.28.209.224.173.249.0|66|34 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.28.209.224.174.126.128|66|34 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.36.54.218.80.92.0|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.36.54.218.80.101.224|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.36.54.218.80.103.64|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.36.54.218.80.109.224|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.52.22.96|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.52.31.224|66|45 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.56.69.96|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.59.119.32|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.59.131.224|66|45 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.61.47.192|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.61.56.128|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.61.56.192|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.69.128.160|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.73.197.128|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.73.198.0|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.73.198.96|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.76.139.32|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.40.172.158.77.225.160|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.6.101.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.6.111.192|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.7.225.128|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.8.101.0|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.8.178.160|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.9.132.128|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.15.230.128|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.184.54.32|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.88.139.28.184.116.64|66|43 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.112.105.90.156.95.64|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.180.222.49.102.89.160|66|45 +1.3.6.1.4.1.9.9.513.1.1.1.1.55.244.219.230.228.7.192|66|44 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.0.223.29.42.246.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.69.209.213.189.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.28.30.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.28.247.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.9.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.160.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.164.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.164.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.167.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.205.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.212.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.230.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.8.123.135.29.230.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.95.147.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.97.136.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.102.87.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.103.175.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.225.4.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.24.249.53.225.42.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.28.209.224.173.249.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.28.209.224.174.126.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.36.54.218.80.92.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.36.54.218.80.103.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.52.22.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.52.31.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.56.69.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.59.131.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.61.47.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.61.56.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.69.128.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.73.197.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.73.198.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.73.198.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.40.172.158.77.225.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.6.101.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.6.111.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.7.225.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.8.101.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.8.178.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.9.132.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.15.230.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.184.54.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.88.139.28.184.116.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.112.105.90.156.95.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.56.244.219.230.228.7.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.0.223.29.42.246.64|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.69.209.213.189.0|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.28.30.64|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.28.247.160|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.9.128|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.160.64|66|7 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.164.0|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.164.64|66|6 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.167.160|66|9 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.205.32|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.212.160|66|6 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.230.64|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.8.123.135.29.230.96|66|9 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.95.147.160|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.97.136.32|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.102.87.0|66|9 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.103.175.0|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.225.4.192|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.24.249.53.225.42.224|66|16 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.28.209.224.173.249.0|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.28.209.224.174.126.128|66|31 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.36.54.218.80.92.0|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.36.54.218.80.103.64|66|13 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.52.22.96|66|18 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.52.31.224|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.56.69.96|66|13 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.59.131.224|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.61.47.192|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.61.56.128|66|13 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.69.128.160|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.73.197.128|66|13 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.73.198.0|66|5 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.73.198.96|66|15 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.40.172.158.77.225.160|66|13 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.6.101.160|66|7 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.6.111.192|66|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.7.225.128|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.8.101.0|66|7 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.8.178.160|66|7 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.9.132.128|66|6 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.15.230.128|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.184.54.32|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.88.139.28.184.116.64|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.112.105.90.156.95.64|66|4 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.57.244.219.230.228.7.192|66|30 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.0.223.29.42.246.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.69.209.213.189.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.28.30.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.28.247.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.9.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.160.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.164.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.164.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.167.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.205.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.212.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.230.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.8.123.135.29.230.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.95.147.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.97.136.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.102.87.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.103.175.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.225.4.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.24.249.53.225.42.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.28.209.224.173.249.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.28.209.224.174.126.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.36.54.218.80.92.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.36.54.218.80.103.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.52.22.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.52.31.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.56.69.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.59.131.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.61.47.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.61.56.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.69.128.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.73.197.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.73.198.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.73.198.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.40.172.158.77.225.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.6.101.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.6.111.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.7.225.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.8.101.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.8.178.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.9.132.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.15.230.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.184.54.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.88.139.28.184.116.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.112.105.90.156.95.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.58.244.219.230.228.7.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.76.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.80.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.80.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.82.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.82.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.83.0.60.16.104.153.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.0.60.16.104.154.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.0.223.29.42.246.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.69.209.213.189.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.28.30.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.28.170.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.28.247.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.9.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.160.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.164.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.164.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.167.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.205.32|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.212.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.230.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.8.123.135.29.230.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.95.147.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.97.136.32|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.102.87.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.102.134.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.103.175.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.225.4.192|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.24.249.53.225.42.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.28.209.224.173.249.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.28.209.224.174.126.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.36.54.218.80.92.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.36.54.218.80.101.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.36.54.218.80.103.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.36.54.218.80.109.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.52.22.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.52.31.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.56.69.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.59.119.32|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.59.131.224|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.61.47.192|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.61.56.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.61.56.192|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.69.128.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.73.197.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.73.198.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.73.198.96|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.76.139.32|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.40.172.158.77.225.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.6.101.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.6.111.192|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.7.225.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.8.101.0|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.8.178.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.9.132.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.15.230.128|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.184.54.32|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.88.139.28.184.116.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.112.105.90.156.95.64|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.180.222.49.102.89.160|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.83.244.219.230.228.7.192|4|Unprimed +1.3.6.1.4.1.9.9.513.1.1.1.1.86.0.60.16.104.153.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.0.60.16.104.154.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.0.223.29.42.246.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.69.209.213.189.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.28.30.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.28.170.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.28.247.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.9.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.160.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.164.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.164.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.167.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.205.32|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.212.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.230.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.8.123.135.29.230.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.95.147.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.97.136.32|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.102.87.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.102.134.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.103.175.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.225.4.192|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.24.249.53.225.42.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.28.209.224.173.249.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.28.209.224.174.126.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.36.54.218.80.92.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.36.54.218.80.101.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.36.54.218.80.103.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.36.54.218.80.109.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.52.22.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.52.31.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.56.69.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.59.119.32|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.59.131.224|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.61.47.192|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.61.56.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.61.56.192|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.69.128.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.73.197.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.73.198.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.73.198.96|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.76.139.32|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.40.172.158.77.225.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.6.101.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.6.111.192|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.7.225.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.8.101.0|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.8.178.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.9.132.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.15.230.128|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.184.54.32|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.88.139.28.184.116.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.112.105.90.156.95.64|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.180.222.49.102.89.160|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.86.244.219.230.228.7.192|4x|4e6f7420436f6e6e6563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.103.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.104.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.104.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.105.0.60.16.104.153.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.0.60.16.104.154.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.0.223.29.42.246.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.69.209.213.189.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.28.30.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.28.170.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.28.247.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.9.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.160.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.164.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.164.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.167.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.205.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.212.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.230.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.8.123.135.29.230.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.95.147.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.97.136.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.102.87.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.102.134.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.103.175.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.225.4.192|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.24.249.53.225.42.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.28.209.224.173.249.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.28.209.224.174.126.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.36.54.218.80.92.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.36.54.218.80.101.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.36.54.218.80.103.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.36.54.218.80.109.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.52.22.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.52.31.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.56.69.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.59.119.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.59.131.224|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.61.47.192|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.61.56.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.61.56.192|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.69.128.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.73.197.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.73.198.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.73.198.96|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.76.139.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.40.172.158.77.225.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.6.101.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.6.111.192|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.7.225.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.8.101.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.8.178.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.9.132.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.15.230.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.184.54.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.88.139.28.184.116.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.112.105.90.156.95.64|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.180.222.49.102.89.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.105.244.219.230.228.7.192|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.513.1.1.1.1.106.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.106.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.107.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.107.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.0.60.16.104.153.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.0.60.16.104.154.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.0.223.29.42.246.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.69.209.213.189.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.28.30.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.28.170.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.28.247.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.9.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.160.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.164.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.164.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.167.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.205.32|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.212.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.230.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.8.123.135.29.230.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.95.147.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.97.136.32|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.102.87.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.102.134.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.103.175.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.225.4.192|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.24.249.53.225.42.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.28.209.224.173.249.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.28.209.224.174.126.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.36.54.218.80.92.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.36.54.218.80.101.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.36.54.218.80.103.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.36.54.218.80.109.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.52.22.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.52.31.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.56.69.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.59.119.32|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.59.131.224|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.61.47.192|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.61.56.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.61.56.192|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.69.128.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.73.197.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.73.198.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.73.198.96|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.76.139.32|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.40.172.158.77.225.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.6.101.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.6.111.192|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.7.225.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.8.101.0|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.8.178.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.9.132.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.15.230.128|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.184.54.32|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.88.139.28.184.116.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.112.105.90.156.95.64|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.180.222.49.102.89.160|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.108.244.219.230.228.7.192|4x|555342204d6f64756c65 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.0.60.16.104.153.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.0.60.16.104.154.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.0.223.29.42.246.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.69.209.213.189.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.28.30.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.28.170.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.28.247.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.9.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.160.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.164.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.164.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.167.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.205.32|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.212.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.230.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.8.123.135.29.230.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.95.147.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.97.136.32|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.102.87.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.102.134.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.103.175.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.225.4.192|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.24.249.53.225.42.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.28.209.224.173.249.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.28.209.224.174.126.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.36.54.218.80.92.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.36.54.218.80.101.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.36.54.218.80.103.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.36.54.218.80.109.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.52.22.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.52.31.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.56.69.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.59.119.32|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.59.131.224|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.61.47.192|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.61.56.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.61.56.192|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.69.128.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.73.197.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.73.198.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.73.198.96|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.76.139.32|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.40.172.158.77.225.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.6.101.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.6.111.192|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.7.225.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.8.101.0|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.8.178.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.9.132.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.15.230.128|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.184.54.32|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.88.139.28.184.116.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.112.105.90.156.95.64|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.180.222.49.102.89.160|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.109.244.219.230.228.7.192|4x|4e6f74204465746563746564 +1.3.6.1.4.1.9.9.513.1.1.1.1.110.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.110.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.111.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.112.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.112.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.113.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.114.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.114.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.115.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.0.223.29.42.246.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.69.209.213.189.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.28.30.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.28.247.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.9.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.160.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.164.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.164.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.167.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.205.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.212.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.230.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.8.123.135.29.230.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.95.147.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.97.136.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.102.87.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.103.175.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.225.4.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.24.249.53.225.42.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.28.209.224.173.249.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.28.209.224.174.126.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.36.54.218.80.92.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.36.54.218.80.103.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.52.22.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.52.31.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.56.69.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.59.131.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.61.47.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.61.56.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.69.128.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.73.197.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.73.198.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.73.198.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.40.172.158.77.225.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.6.101.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.6.111.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.7.225.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.8.101.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.8.178.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.9.132.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.15.230.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.184.54.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.88.139.28.184.116.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.112.105.90.156.95.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.115.244.219.230.228.7.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.116.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.117.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.1.1.1.118.0.60.16.104.153.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.0.60.16.104.154.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.0.223.29.42.246.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.69.209.213.189.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.28.30.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.28.170.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.28.247.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.9.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.160.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.164.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.164.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.167.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.205.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.212.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.230.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.8.123.135.29.230.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.95.147.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.97.136.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.102.87.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.102.134.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.103.175.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.225.4.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.24.249.53.225.42.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.28.209.224.173.249.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.28.209.224.174.126.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.36.54.218.80.92.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.36.54.218.80.101.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.36.54.218.80.103.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.36.54.218.80.109.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.52.22.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.52.31.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.56.69.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.59.119.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.59.131.224|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.61.47.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.61.56.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.61.56.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.69.128.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.73.197.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.73.198.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.73.198.96|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.76.139.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.40.172.158.77.225.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.6.101.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.6.111.192|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.7.225.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.8.101.0|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.8.178.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.9.132.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.15.230.128|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.184.54.32|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.88.139.28.184.116.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.112.105.90.156.95.64|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.180.222.49.102.89.160|4| +1.3.6.1.4.1.9.9.513.1.1.1.1.118.244.219.230.228.7.192|4| +1.3.6.1.4.1.9.9.513.1.1.3.1.1.0.60.16.104.153.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.0.60.16.104.154.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.0.223.29.42.246.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.69.209.213.189.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.28.30.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.28.170.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.28.247.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.9.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.160.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.164.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.164.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.167.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.205.32|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.212.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.230.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.8.123.135.29.230.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.95.147.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.97.136.32|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.102.87.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.102.134.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.103.175.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.225.4.192|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.24.249.53.225.42.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.28.209.224.173.249.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.28.209.224.174.126.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.36.54.218.80.92.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.36.54.218.80.101.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.36.54.218.80.103.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.36.54.218.80.109.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.52.22.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.52.31.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.56.69.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.59.119.32|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.59.131.224|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.61.47.192|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.61.56.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.61.56.192|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.69.128.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.73.197.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.73.198.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.73.198.96|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.76.139.32|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.40.172.158.77.225.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.6.101.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.6.111.192|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.7.225.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.8.101.0|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.8.178.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.9.132.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.15.230.128|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.184.54.32|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.88.139.28.184.116.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.112.105.90.156.95.64|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.180.222.49.102.89.160|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.1.244.219.230.228.7.192|4x|504820 +1.3.6.1.4.1.9.9.513.1.1.3.1.2.0.60.16.104.153.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.0.60.16.104.154.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.0.223.29.42.246.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.69.209.213.189.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.28.30.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.28.170.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.28.247.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.9.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.160.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.164.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.164.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.167.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.205.32|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.212.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.230.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.8.123.135.29.230.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.95.147.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.97.136.32|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.102.87.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.102.134.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.103.175.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.225.4.192|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.24.249.53.225.42.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.28.209.224.173.249.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.28.209.224.174.126.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.36.54.218.80.92.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.36.54.218.80.101.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.36.54.218.80.103.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.36.54.218.80.109.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.52.22.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.52.31.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.56.69.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.59.119.32|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.59.131.224|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.61.47.192|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.61.56.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.61.56.192|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.69.128.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.73.197.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.73.198.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.73.198.96|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.76.139.32|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.40.172.158.77.225.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.6.101.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.6.111.192|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.7.225.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.8.101.0|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.8.178.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.9.132.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.15.230.128|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.184.54.32|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.88.139.28.184.116.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.112.105.90.156.95.64|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.180.222.49.102.89.160|4|PH +1.3.6.1.4.1.9.9.513.1.1.3.1.2.244.219.230.228.7.192|4|PH +1.3.6.1.4.1.9.9.513.1.1.10.1.1.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.1.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.0.60.16.104.153.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.0.60.16.104.154.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.0.223.29.42.246.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.69.209.213.189.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.28.30.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.28.170.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.28.247.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.9.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.160.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.164.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.164.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.167.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.205.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.212.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.230.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.8.123.135.29.230.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.95.147.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.97.136.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.102.87.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.102.134.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.103.175.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.225.4.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.24.249.53.225.42.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.28.209.224.173.249.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.28.209.224.174.126.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.36.54.218.80.92.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.36.54.218.80.101.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.36.54.218.80.103.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.36.54.218.80.109.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.52.22.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.52.31.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.56.69.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.59.119.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.59.131.224|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.61.47.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.61.56.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.61.56.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.69.128.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.73.197.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.73.198.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.73.198.96|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.76.139.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.40.172.158.77.225.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.6.101.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.6.111.192|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.7.225.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.8.101.0|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.8.178.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.9.132.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.15.230.128|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.184.54.32|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.88.139.28.184.116.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.112.105.90.156.95.64|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.180.222.49.102.89.160|66|0 +1.3.6.1.4.1.9.9.513.1.1.10.1.2.244.219.230.228.7.192|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.153.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.153.160.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.60.16.104.154.224.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.223.29.42.246.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.0.223.29.42.246.64.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.69.209.213.189.0.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.170.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.28.247.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.9.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.160.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.164.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.164.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.167.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.205.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.212.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.230.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.8.123.135.29.230.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.95.147.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.97.136.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.102.87.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.102.134.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.103.175.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.225.4.192.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.24.249.53.225.42.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.173.249.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.173.249.0.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.28.209.224.174.126.128.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.92.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.92.0.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.101.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.101.224.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.103.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.103.64.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.36.54.218.80.109.224.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.22.96.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.31.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.52.31.224.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.56.69.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.56.69.96.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.119.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.119.32.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.131.224.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.59.131.224.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.47.192.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.47.192.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.128.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.192.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.61.56.192.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.69.128.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.69.128.160.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.197.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.197.128.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.0.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.96.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.73.198.96.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.76.139.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.76.139.32.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.40.172.158.77.225.160.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.6.101.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.6.111.192.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.7.225.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.8.101.0.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.8.178.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.9.132.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.15.230.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.184.54.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.88.139.28.184.116.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.112.105.90.156.95.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.112.105.90.156.95.64.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.180.222.49.102.89.160.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.180.222.49.102.89.160.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.244.219.230.228.7.192.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.1.244.219.230.228.7.192.2|66|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.153.160.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.60.16.104.154.224.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.0.223.29.42.246.64.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.69.209.213.189.0.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.30.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.170.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.247.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.9.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.160.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.164.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.164.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.167.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.205.32.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.212.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.230.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.230.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.95.147.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.97.136.32.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.102.87.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.102.134.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.103.175.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.225.4.192.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.225.42.224.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.173.249.0.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.28.209.224.174.126.128.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.92.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.92.0.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.101.224.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.101.224.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.103.64.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.109.224.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.36.54.218.80.109.224.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.22.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.22.96.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.31.224.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.52.31.224.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.56.69.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.56.69.96.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.119.32.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.119.32.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.59.131.224.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.47.192.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.47.192.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.128.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.192.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.61.56.192.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.69.128.160.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.197.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.197.128.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.0.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.96.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.73.198.96.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.76.139.32.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.76.139.32.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.77.225.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.40.172.158.77.225.160.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.6.101.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.6.111.192.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.7.225.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.8.101.0.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.8.178.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.9.132.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.15.230.128.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.184.54.32.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.184.116.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.112.105.90.156.95.64.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.112.105.90.156.95.64.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.180.222.49.102.89.160.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.180.222.49.102.89.160.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.244.219.230.228.7.192.0|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.2.244.219.230.228.7.192.2|2|5 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.153.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.153.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.153.160.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.154.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.154.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.60.16.104.154.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.223.29.42.246.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.223.29.42.246.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.0.223.29.42.246.64.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.69.209.213.189.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.69.209.213.189.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.69.209.213.189.0.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.30.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.30.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.170.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.170.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.247.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.28.247.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.9.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.9.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.160.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.160.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.164.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.164.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.164.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.164.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.167.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.167.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.205.32.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.205.32.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.212.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.212.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.230.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.230.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.230.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.8.123.135.29.230.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.95.147.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.95.147.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.97.136.32.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.97.136.32.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.102.87.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.102.87.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.102.134.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.102.134.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.103.175.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.103.175.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.225.4.192.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.225.4.192.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.225.42.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.24.249.53.225.42.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.173.249.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.173.249.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.173.249.0.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.174.126.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.174.126.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.28.209.224.174.126.128.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.92.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.92.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.92.0.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.101.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.101.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.101.224.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.103.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.103.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.103.64.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.109.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.109.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.36.54.218.80.109.224.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.22.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.22.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.22.96.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.31.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.31.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.52.31.224.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.56.69.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.56.69.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.56.69.96.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.119.32.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.119.32.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.119.32.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.131.224.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.131.224.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.59.131.224.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.47.192.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.47.192.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.47.192.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.128.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.192.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.192.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.61.56.192.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.69.128.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.69.128.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.69.128.160.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.197.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.197.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.197.128.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.0.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.96.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.96.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.73.198.96.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.76.139.32.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.76.139.32.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.76.139.32.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.77.225.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.77.225.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.40.172.158.77.225.160.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.6.101.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.6.101.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.6.111.192.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.6.111.192.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.7.225.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.7.225.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.8.101.0.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.8.101.0.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.8.178.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.8.178.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.9.132.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.9.132.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.15.230.128.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.15.230.128.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.184.54.32.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.184.54.32.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.184.116.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.88.139.28.184.116.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.112.105.90.156.95.64.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.112.105.90.156.95.64.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.112.105.90.156.95.64.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.180.222.49.102.89.160.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.180.222.49.102.89.160.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.180.222.49.102.89.160.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.244.219.230.228.7.192.0|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.244.219.230.228.7.192.1|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.3.244.219.230.228.7.192.2|4x|2d41 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.4.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.153.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.153.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.154.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.154.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.223.29.42.246.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.223.29.42.246.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.69.209.213.189.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.69.209.213.189.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.30.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.30.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.170.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.170.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.247.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.28.247.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.9.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.9.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.160.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.160.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.164.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.164.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.164.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.164.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.167.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.167.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.205.32.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.205.32.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.212.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.212.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.230.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.230.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.230.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.8.123.135.29.230.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.95.147.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.95.147.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.97.136.32.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.97.136.32.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.102.87.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.102.87.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.102.134.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.102.134.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.103.175.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.103.175.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.225.4.192.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.225.4.192.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.225.42.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.24.249.53.225.42.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.173.249.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.173.249.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.174.126.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.174.126.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.92.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.92.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.101.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.101.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.103.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.103.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.109.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.109.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.22.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.22.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.31.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.31.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.56.69.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.56.69.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.119.32.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.119.32.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.131.224.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.131.224.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.47.192.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.47.192.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.192.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.192.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.69.128.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.69.128.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.197.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.197.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.96.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.96.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.76.139.32.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.76.139.32.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.77.225.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.77.225.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.6.101.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.6.101.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.6.111.192.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.6.111.192.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.7.225.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.7.225.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.8.101.0.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.8.101.0.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.8.178.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.8.178.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.9.132.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.9.132.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.15.230.128.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.15.230.128.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.184.54.32.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.184.54.32.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.184.116.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.88.139.28.184.116.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.112.105.90.156.95.64.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.112.105.90.156.95.64.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.180.222.49.102.89.160.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.180.222.49.102.89.160.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.244.219.230.228.7.192.0|2|20 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.244.219.230.228.7.192.1|2|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.5.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.6.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.7.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.8.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.9.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.10.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.12.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.13.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.14.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.22.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.153.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.223.29.42.246.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.30.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.170.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.28.247.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.9.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.160.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.164.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.164.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.167.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.205.32.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.212.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.230.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.8.123.135.29.230.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.95.147.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.97.136.32.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.102.87.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.102.134.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.103.175.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.225.4.192.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.24.249.53.225.42.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.173.249.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.92.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.101.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.103.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.31.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.56.69.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.119.32.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.131.224.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.47.192.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.192.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.69.128.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.197.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.96.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.76.139.32.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.77.225.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.6.101.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.6.111.192.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.7.225.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.8.101.0.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.9.132.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.15.230.128.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.184.54.32.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.88.139.28.184.116.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.112.105.90.156.95.64.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.180.222.49.102.89.160.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.244.219.230.228.7.192.1|2|4 +1.3.6.1.4.1.9.9.513.1.2.1.1.23.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.153.160.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.153.160.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.154.224.1|4|104 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.60.16.104.154.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.223.29.42.246.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.223.29.42.246.64.1|4|60 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.0.223.29.42.246.64.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.69.209.213.189.0.1|4|60 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.69.209.213.189.0.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.30.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.30.64.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.170.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.170.96.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.247.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.28.247.160.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.9.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.9.128.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.160.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.160.64.1|4|48 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.164.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.164.0.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.164.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.164.64.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.167.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.167.160.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.205.32.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.205.32.1|4|136 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.212.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.212.160.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.230.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.230.64.1|4|52 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.230.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.8.123.135.29.230.96.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.95.147.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.95.147.160.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.97.136.32.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.97.136.32.1|4|44 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.102.87.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.102.87.0.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.102.134.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.102.134.96.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.103.175.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.103.175.0.1|4|44 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.225.4.192.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.225.4.192.1|4|48 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.225.42.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.24.249.53.225.42.224.1|4|52 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.173.249.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.173.249.0.1|4|104 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.173.249.0.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.174.126.128.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.28.209.224.174.126.128.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.92.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.92.0.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.92.0.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.101.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.101.224.1|4|136 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.101.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.103.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.103.64.1|4|60 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.103.64.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.109.224.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.36.54.218.80.109.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.22.96.1|4|136 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.22.96.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.31.224.1|4|48 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.52.31.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.56.69.96.1|4|136 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.56.69.96.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.119.32.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.119.32.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.119.32.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.131.224.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.59.131.224.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.47.192.1|4|56 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.47.192.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.128.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.128.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.192.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.192.1|4|136 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.61.56.192.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.69.128.160.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.69.128.160.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.197.128.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.197.128.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.0.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.0.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.96.1|4|56 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.73.198.96.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.76.139.32.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.76.139.32.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.76.139.32.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.77.225.160.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.40.172.158.77.225.160.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.6.101.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.6.101.160.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.6.111.192.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.6.111.192.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.7.225.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.7.225.128.1|4|153 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.8.101.0.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.8.101.0.1|4|56 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.8.178.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.8.178.160.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.9.132.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.9.132.128.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.15.230.128.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.15.230.128.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.184.54.32.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.184.54.32.1|4|40 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.184.116.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.88.139.28.184.116.64.1|4|108 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.112.105.90.156.95.64.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.112.105.90.156.95.64.1|4|157 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.112.105.90.156.95.64.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.180.222.49.102.89.160.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.180.222.49.102.89.160.1|4|60 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.180.222.49.102.89.160.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.24.244.219.230.228.7.192.1|4|104 +1.3.6.1.4.1.9.9.513.1.2.1.1.24.244.219.230.228.7.192.2|4| +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.26.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.27.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.28.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.31.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.37.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.42.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.1.1.43.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.60.16.104.153.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.60.16.104.153.160.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.60.16.104.154.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.60.16.104.154.224.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.223.29.42.246.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.0.223.29.42.246.64.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.69.209.213.189.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.69.209.213.189.0.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.28.30.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.28.170.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.28.247.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.9.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.160.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.164.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.164.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.167.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.205.32.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.212.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.230.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.8.123.135.29.230.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.95.147.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.97.136.32.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.102.87.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.102.134.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.103.175.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.225.4.192.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.24.249.53.225.42.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.28.209.224.173.249.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.28.209.224.173.249.0.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.28.209.224.174.126.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.28.209.224.174.126.128.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.92.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.92.0.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.101.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.101.224.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.103.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.103.64.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.109.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.36.54.218.80.109.224.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.52.22.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.52.22.96.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.52.31.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.52.31.224.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.56.69.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.56.69.96.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.59.119.32.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.59.119.32.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.59.131.224.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.59.131.224.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.47.192.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.47.192.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.56.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.56.128.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.56.192.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.61.56.192.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.69.128.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.69.128.160.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.197.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.197.128.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.198.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.198.0.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.198.96.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.73.198.96.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.76.139.32.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.76.139.32.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.77.225.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.40.172.158.77.225.160.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.6.101.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.6.111.192.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.7.225.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.8.101.0.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.8.178.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.9.132.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.15.230.128.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.184.54.32.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.88.139.28.184.116.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.112.105.90.156.95.64.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.112.105.90.156.95.64.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.180.222.49.102.89.160.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.180.222.49.102.89.160.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.244.219.230.228.7.192.0|4|GigabitEthernet0 +1.3.6.1.4.1.9.9.513.1.2.2.1.2.244.219.230.228.7.192.1|4|LAN1 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.60.16.104.153.160.0|4x|003c10680cd0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.60.16.104.153.160.1|4x|003c10680cd0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.60.16.104.154.224.0|4x|003c10680d20 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.60.16.104.154.224.1|4x|003c10680d20 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.223.29.42.246.64.0|4x|00df1d2a32a8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.0.223.29.42.246.64.1|4x|00df1d2a32a8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.69.209.213.189.0.0|4x|488b0a0f5228 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.69.209.213.189.0.1|4x|488b0a0f5228 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.28.30.64.0|4x|e4a41cade21c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.28.170.96.0|4x|e4a41cadf3a0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.28.247.160.0|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.9.128.0|4x|e4a41cadff84 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.160.64.0|4x|087b8714125c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.164.0.0|4x|087b871412d4 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.164.64.0|4x|087b871412dc +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.167.160.0|4x|087b87141348 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.205.32.0|4x|087b871417f8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.212.160.0|4x|087b871418e8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.230.64.0|4x|087b87141b1c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.8.123.135.29.230.96.0|4x|087b87141b20 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.95.147.160.0|4x|18f9355c50c8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.97.136.32.0|4x|18f9355c8f58 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.102.87.0.0|4x|18f9355d2934 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.102.134.96.0|4x|18f9355d2f20 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.103.175.0.0|4x|18f9355d5434 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.225.4.192.0|4x|18f935d37eec +1.3.6.1.4.1.9.9.513.1.2.2.1.3.24.249.53.225.42.224.0|4x|18f935d383b0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.28.209.224.173.249.0.0|4x|1cd1e0ae0e08 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.28.209.224.173.249.0.1|4x|1cd1e0ae0e08 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.28.209.224.174.126.128.0|4x|1cd1e0ae15d0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.28.209.224.174.126.128.1|4x|1cd1e0ae15d0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.92.0.0|4x|0845d131e5c8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.92.0.1|4x|0845d131e5c8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.101.224.0|4x|0845d131e666 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.101.224.1|4x|0845d131e666 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.103.64.0|4x|0845d131e67c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.103.64.1|4x|0845d131e67c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.109.224.0|4x|0845d131e6e6 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.36.54.218.80.109.224.1|4x|0845d131e6e6 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.52.22.96.0|4x|28ac9e04b0e2 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.52.22.96.1|4x|28ac9e04b0e2 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.52.31.224.0|4x|28ac9e04b17a +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.52.31.224.1|4x|28ac9e04b17a +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.56.69.96.0|4x|00be75cffd06 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.56.69.96.1|4x|00be75cffd06 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.59.119.32.0|4x|00be75e92bb0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.59.119.32.1|4x|00be75e92bb0 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.59.131.224.0|4x|00be75e92c7c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.59.131.224.1|4x|00be75e92c7c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.47.192.0|4x|70708b0c71a6 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.47.192.1|4x|70708b0c71a6 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.56.128.0|4x|70695a219932 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.56.128.1|4x|70695a219932 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.56.192.0|4x|70695a219936 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.61.56.192.1|4x|70695a219936 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.69.128.160.0|4x|00be7565b956 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.69.128.160.1|4x|00be7565b956 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.197.128.0|4x|28ac9e04b584 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.197.128.1|4x|28ac9e04b584 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.198.0.0|4x|28ac9e04b58c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.198.0.1|4x|28ac9e04b58c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.198.96.0|4x|28ac9e04b592 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.73.198.96.1|4x|28ac9e04b592 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.76.139.32.0|4x|00be75e93100 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.76.139.32.1|4x|00be75e93100 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.77.225.160.0|4x|70695a219d84 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.40.172.158.77.225.160.1|4x|70695a219d84 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.6.101.160.0|4x|588b1c016b0c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.6.111.192.0|4x|588b1c016c50 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.7.225.128.0|4x|588b1c019a88 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.8.101.0.0|4x|588b1c01aaf8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.8.178.160.0|4x|588b1c01b4ac +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.9.132.128.0|4x|588b1c01cee8 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.15.230.128.0|4x|588b1cb65b24 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.184.54.32.0|4x|588b1cb66518 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.88.139.28.184.116.64.0|4x|588b1cb66cdc +1.3.6.1.4.1.9.9.513.1.2.2.1.3.112.105.90.156.95.64.0|4x|4c776de1e980 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.112.105.90.156.95.64.1|4x|4c776de1e980 +1.3.6.1.4.1.9.9.513.1.2.2.1.3.180.222.49.102.89.160.0|4x|005d7318dc6c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.180.222.49.102.89.160.1|4x|005d7318dc6c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.244.219.230.228.7.192.0|4x|f4dbe6e36d7c +1.3.6.1.4.1.9.9.513.1.2.2.1.3.244.219.230.228.7.192.1|4x|f4dbe6e36d7c +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.4.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.5.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.60.16.104.153.160.0|65|249082249 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.60.16.104.154.224.0|65|222664859 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.223.29.42.246.64.0|65|47277082 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.69.209.213.189.0.0|65|44397607 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.28.30.64.0|65|2205797 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.28.170.96.0|65|726117830 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.28.247.160.0|65|26475422 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.9.128.0|65|1980084 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.160.64.0|65|2437608 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.164.0.0|65|1978460 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.164.64.0|65|2770210 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.167.160.0|65|8443338 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.205.32.0|65|1976975 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.212.160.0|65|8895329 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.230.64.0|65|2288730 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.8.123.135.29.230.96.0|65|5145242 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.95.147.160.0|65|2604968 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.97.136.32.0|65|1978131 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.102.87.0.0|65|6649837 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.102.134.96.0|65|4883464 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.103.175.0.0|65|1980176 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.225.4.192.0|65|2207191 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.24.249.53.225.42.224.0|65|6353624 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.28.209.224.173.249.0.0|65|237604494 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.28.209.224.174.126.128.0|65|122034883 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.92.0.0|65|65137483 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.101.224.0|65|102951061 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.103.64.0|65|341199693 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.109.224.0|65|19224055 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.52.22.96.0|65|24168317 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.52.31.224.0|65|70085066 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.56.69.96.0|65|53128444 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.59.119.32.0|65|2030565 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.59.131.224.0|65|468291279 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.47.192.0|65|73068735 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.56.128.0|65|2036499 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.56.192.0|65|2025066 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.69.128.160.0|65|2756096 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.197.128.0|65|2540195 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.198.0.0|65|2891002 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.198.96.0|65|2233613 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.76.139.32.0|65|2845563 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.77.225.160.0|65|15492431 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.6.101.160.0|65|80490422 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.6.111.192.0|65|1773067277 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.7.225.128.0|65|24546445 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.8.101.0.0|65|3586727 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.8.178.160.0|65|4471966 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.9.132.128.0|65|6829267 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.15.230.128.0|65|70533753 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.184.54.32.0|65|77130624 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.88.139.28.184.116.64.0|65|108369592 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.112.105.90.156.95.64.0|65|2020195 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.180.222.49.102.89.160.0|65|1290207535 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.244.219.230.228.7.192.0|65|67151907 +1.3.6.1.4.1.9.9.513.1.2.2.1.6.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.28.30.64.0|65|793946 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.28.170.96.0|65|15184063 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.28.247.160.0|65|793857 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.9.128.0|65|793897 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.160.64.0|65|793935 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.164.0.0|65|793907 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.164.64.0|65|793912 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.167.160.0|65|793873 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.205.32.0|65|793941 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.212.160.0|65|793887 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.230.64.0|65|793932 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.8.123.135.29.230.96.0|65|793849 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.95.147.160.0|65|1402779 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.97.136.32.0|65|793122 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.102.87.0.0|65|793817 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.102.134.96.0|65|759713 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.103.175.0.0|65|793924 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.225.4.192.0|65|793920 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.24.249.53.225.42.224.0|65|793918 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.6.101.160.0|65|27403323 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.6.111.192.0|65|27403271 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.7.225.128.0|65|792691 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.8.101.0.0|65|782257 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.8.178.160.0|65|792685 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.9.132.128.0|65|792683 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.15.230.128.0|65|27405837 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.184.54.32.0|65|27403556 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.88.139.28.184.116.64.0|65|40433722 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.7.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.60.16.104.153.160.0|65|111472213 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.60.16.104.154.224.0|65|103335128 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.223.29.42.246.64.0|65|20813387 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.69.209.213.189.0.0|65|16693951 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.69.209.213.189.0.1|65|20008 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.28.30.64.0|65|1393601 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.28.170.96.0|65|369666827 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.28.247.160.0|65|15302432 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.9.128.0|65|964611 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.160.64.0|65|1683203 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.164.0.0|65|800274 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.164.64.0|65|1568876 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.167.160.0|65|5670746 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.205.32.0|65|734842 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.212.160.0|65|3859811 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.230.64.0|65|1230319 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.8.123.135.29.230.96.0|65|3869835 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.95.147.160.0|65|605083 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.97.136.32.0|65|646407 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.102.87.0.0|65|3815240 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.102.134.96.0|65|1935732 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.103.175.0.0|65|1089381 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.225.4.192.0|65|1105523 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.24.249.53.225.42.224.0|65|2085576 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.28.209.224.173.249.0.0|65|89204554 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.28.209.224.174.126.128.0|65|53214629 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.92.0.0|65|25615275 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.92.0.1|65|213505 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.101.224.0|65|75133091 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.101.224.1|65|213593 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.103.64.0|65|152517364 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.103.64.1|65|20053 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.109.224.0|65|7845729 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.36.54.218.80.109.224.1|65|20033 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.52.22.96.0|65|13067141 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.52.22.96.1|65|20038 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.52.31.224.0|65|40451472 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.52.31.224.1|65|213483 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.56.69.96.0|65|32613166 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.56.69.96.1|65|213535 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.59.119.32.0|65|861462 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.59.119.32.1|65|20021 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.59.131.224.0|65|177957765 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.59.131.224.1|65|213490 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.47.192.0|65|23749642 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.47.192.1|65|213541 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.56.128.0|65|895292 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.56.128.1|65|20039 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.56.192.0|65|1004431 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.61.56.192.1|65|20014 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.69.128.160.0|65|1232191 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.69.128.160.1|65|20039 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.197.128.0|65|1726268 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.197.128.1|65|20009 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.198.0.0|65|1162237 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.198.0.1|65|20045 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.198.96.0|65|1339159 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.73.198.96.1|65|20030 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.76.139.32.0|65|1238514 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.76.139.32.1|65|20040 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.77.225.160.0|65|9070754 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.40.172.158.77.225.160.1|65|20006 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.6.101.160.0|65|72341735 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.6.111.192.0|65|898832278 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.7.225.128.0|65|14224091 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.8.101.0.0|65|3138676 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.8.178.160.0|65|2341023 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.9.132.128.0|65|5449783 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.15.230.128.0|65|56823205 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.184.54.32.0|65|32565507 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.88.139.28.184.116.64.0|65|78619307 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.112.105.90.156.95.64.0|65|782587 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.112.105.90.156.95.64.1|65|20030 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.180.222.49.102.89.160.0|65|629168030 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.180.222.49.102.89.160.1|65|101348 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.244.219.230.228.7.192.0|65|27131212 +1.3.6.1.4.1.9.9.513.1.2.2.1.8.244.219.230.228.7.192.1|65|213529 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.9.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.2.1.10.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.60.16.104.153.160.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.60.16.104.154.224.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.223.29.42.246.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.69.209.213.189.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.28.30.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.28.170.96.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.28.247.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.9.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.160.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.164.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.164.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.167.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.205.32.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.212.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.230.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.8.123.135.29.230.96.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.95.147.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.97.136.32.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.102.87.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.102.134.96.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.103.175.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.225.4.192.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.24.249.53.225.42.224.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.28.209.224.173.249.0.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.28.209.224.174.126.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.92.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.101.224.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.103.64.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.109.224.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.52.22.96.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.52.31.224.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.56.69.96.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.59.119.32.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.59.131.224.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.47.192.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.56.128.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.56.192.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.69.128.160.0|2|100 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.197.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.198.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.198.96.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.76.139.32.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.77.225.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.6.101.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.6.111.192.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.7.225.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.8.101.0.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.8.178.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.9.132.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.15.230.128.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.184.54.32.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.88.139.28.184.116.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.112.105.90.156.95.64.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.180.222.49.102.89.160.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.244.219.230.228.7.192.0|2|1000 +1.3.6.1.4.1.9.9.513.1.2.2.1.11.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.60.16.104.153.160.0|65|1094579445 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.60.16.104.154.224.0|65|927646336 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.223.29.42.246.64.0|65|2546124483 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.69.209.213.189.0.0|65|1653995556 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.28.30.64.0|65|542081037 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.28.170.96.0|65|226902295 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.28.247.160.0|65|2041714112 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.9.128.0|65|310088341 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.160.64.0|65|811671508 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.164.0.0|65|310053662 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.164.64.0|65|1244254648 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.167.160.0|65|2877299006 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.205.32.0|65|309821423 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.212.160.0|65|119774760 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.230.64.0|65|638690728 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.8.123.135.29.230.96.0|65|3008757635 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.95.147.160.0|65|369484433 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.97.136.32.0|65|309775133 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.102.87.0.0|65|1116113285 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.102.134.96.0|65|4061240385 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.103.175.0.0|65|310663190 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.225.4.192.0|65|563936254 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.24.249.53.225.42.224.0|65|1438997809 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.28.209.224.173.249.0.0|65|4125980561 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.28.209.224.174.126.128.0|65|679147378 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.92.0.0|65|696856381 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.101.224.0|65|305737212 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.103.64.0|65|3469854182 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.109.224.0|65|1734460378 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.52.22.96.0|65|1424141238 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.52.31.224.0|65|667402629 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.56.69.96.0|65|3205695298 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.59.119.32.0|65|308323092 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.59.131.224.0|65|3945071983 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.47.192.0|65|3022234193 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.56.128.0|65|310486999 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.56.192.0|65|309501725 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.69.128.160.0|65|463576298 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.197.128.0|65|657761353 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.198.0.0|65|628168834 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.198.96.0|65|429906242 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.76.139.32.0|65|515669586 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.77.225.160.0|65|3238732336 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.6.101.160.0|65|2468094106 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.6.111.192.0|65|3338245730 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.7.225.128.0|65|3160383570 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.8.101.0.0|65|1646352415 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.8.178.160.0|65|3109341419 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.9.132.128.0|65|791572568 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.15.230.128.0|65|1721326941 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.184.54.32.0|65|1759333067 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.88.139.28.184.116.64.0|65|1691536829 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.112.105.90.156.95.64.0|65|307457912 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.180.222.49.102.89.160.0|65|1880440685 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.244.219.230.228.7.192.0|65|3312299466 +1.3.6.1.4.1.9.9.513.1.2.2.1.13.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.60.16.104.153.160.0|65|1678754918 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.60.16.104.154.224.0|65|826240178 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.223.29.42.246.64.0|65|369327975 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.69.209.213.189.0.0|65|3798791403 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.69.209.213.189.0.1|65|7422963 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.28.30.64.0|65|340895836 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.28.170.96.0|65|3995938609 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.28.247.160.0|65|541294327 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.9.128.0|65|253099222 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.160.64.0|65|404972461 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.164.0.0|65|223654778 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.164.64.0|65|372833344 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.167.160.0|65|3234981722 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.205.32.0|65|213972902 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.212.160.0|65|1578940769 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.230.64.0|65|314901205 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.8.123.135.29.230.96.0|65|1356669853 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.95.147.160.0|65|182336643 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.97.136.32.0|65|195445640 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.102.87.0.0|65|1789883280 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.102.134.96.0|65|681173222 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.103.175.0.0|65|276530258 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.225.4.192.0|65|285563172 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.24.249.53.225.42.224.0|65|599083393 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.28.209.224.173.249.0.0|65|3139842621 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.28.209.224.174.126.128.0|65|787216545 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.92.0.0|65|1398138373 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.92.0.1|65|79850865 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.101.224.0|65|3789647474 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.101.224.1|65|78815812 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.103.64.0|65|549671144 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.103.64.1|65|7559976 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.109.224.0|65|2054770053 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.36.54.218.80.109.224.1|65|7532403 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.52.22.96.0|65|1415825629 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.52.22.96.1|65|7394017 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.52.31.224.0|65|537073508 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.52.31.224.1|65|78134773 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.56.69.96.0|65|2943445108 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.56.69.96.1|65|78367340 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.59.119.32.0|65|212581303 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.59.119.32.1|65|7347707 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.59.131.224.0|65|3492443954 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.59.131.224.1|65|78137335 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.47.192.0|65|1460113749 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.47.192.1|65|78155331 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.56.128.0|65|212583527 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.56.128.1|65|7354313 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.56.192.0|65|233736785 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.61.56.192.1|65|7345138 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.69.128.160.0|65|258651164 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.69.128.160.1|65|7394386 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.197.128.0|65|342142203 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.197.128.1|65|7383316 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.198.0.0|65|251224106 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.198.0.1|65|7396600 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.198.96.0|65|283181409 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.73.198.96.1|65|7351010 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.76.139.32.0|65|268199712 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.76.139.32.1|65|7394755 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.77.225.160.0|65|2784150809 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.40.172.158.77.225.160.1|65|7342202 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.6.101.160.0|65|593748522 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.6.111.192.0|65|2267648914 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.7.225.128.0|65|3011059158 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.8.101.0.0|65|862010548 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.8.178.160.0|65|699140071 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.9.132.128.0|65|1399671348 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.15.230.128.0|65|975844105 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.184.54.32.0|65|1951199740 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.88.139.28.184.116.64.0|65|3721650855 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.112.105.90.156.95.64.0|65|199679304 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.112.105.90.156.95.64.1|65|7351005 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.180.222.49.102.89.160.0|65|1345170667 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.180.222.49.102.89.160.1|65|37599989 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.244.219.230.228.7.192.0|65|2704643511 +1.3.6.1.4.1.9.9.513.1.2.2.1.14.244.219.230.228.7.192.1|65|78151609 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.15.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.16.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.17.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.18.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.19.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.60.16.104.153.160.0|65|49 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.60.16.104.154.224.0|65|28 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.223.29.42.246.64.0|65|29 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.69.209.213.189.0.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.28.30.64.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.28.170.96.0|65|6 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.28.247.160.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.9.128.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.160.64.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.164.0.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.164.64.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.167.160.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.205.32.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.212.160.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.230.64.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.8.123.135.29.230.96.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.95.147.160.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.97.136.32.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.102.87.0.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.102.134.96.0|65|9 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.103.175.0.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.225.4.192.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.24.249.53.225.42.224.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.28.209.224.173.249.0.0|65|27 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.28.209.224.174.126.128.0|65|50 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.92.0.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.101.224.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.103.64.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.109.224.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.52.31.224.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.56.69.96.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.59.119.32.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.59.131.224.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.47.192.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.56.128.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.56.192.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.69.128.160.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.197.128.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.198.0.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.198.96.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.77.225.160.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.6.101.160.0|65|8 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.6.111.192.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.7.225.128.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.8.101.0.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.8.178.160.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.9.132.128.0|65|6 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.15.230.128.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.184.54.32.0|65|7 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.88.139.28.184.116.64.0|65|37 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.112.105.90.156.95.64.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.180.222.49.102.89.160.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.244.219.230.228.7.192.0|65|1 +1.3.6.1.4.1.9.9.513.1.2.2.1.20.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.21.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.22.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.23.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.24.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.25.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.26.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.27.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.60.16.104.153.160.0|65|3495 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.60.16.104.154.224.0|65|962 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.28.170.96.0|65|138617 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.28.209.224.173.249.0.0|65|2718 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.52.22.96.0|65|58 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.28.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.29.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.30.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.31.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.9.9.513.1.2.2.1.32.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.153.160.1|4x|003c106899a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.153.160.2|4x|003c106899a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.60.16.104.154.224.2|4x|003c10689ae0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.223.29.42.246.64.0|4x|00df1d2af640 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.223.29.42.246.64.1|4x|00df1d2af640 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.0.223.29.42.246.64.2|4x|00df1d2af640 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.69.209.213.189.0.2|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.30.64.0|4x|087b871c1e40 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.30.64.1|4x|087b871c1e40 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.170.96.0|4x|087b871caa60 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.170.96.1|4x|087b871caa60 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.247.160.0|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.28.247.160.1|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.9.128.0|4x|087b871d0980 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.9.128.1|4x|087b871d0980 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.160.64.0|4x|087b871da040 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.160.64.1|4x|087b871da040 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.164.0.0|4x|087b871da400 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.164.0.1|4x|087b871da400 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.164.64.0|4x|087b871da440 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.164.64.1|4x|087b871da440 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.167.160.0|4x|087b871da7a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.167.160.1|4x|087b871da7a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.205.32.0|4x|087b871dcd20 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.205.32.1|4x|087b871dcd20 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.212.160.0|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.212.160.1|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.230.64.0|4x|087b871de640 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.230.64.1|4x|087b871de640 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.230.96.0|4x|087b871de660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.8.123.135.29.230.96.1|4x|087b871de660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.95.147.160.0|4x|18f9355f93a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.95.147.160.1|4x|18f9355f93a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.97.136.32.0|4x|18f935618820 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.97.136.32.1|4x|18f935618820 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.102.87.0.0|4x|18f935665700 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.102.87.0.1|4x|18f935665700 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.102.134.96.0|4x|18f935668660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.102.134.96.1|4x|18f935668660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.103.175.0.0|4x|18f93567af00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.103.175.0.1|4x|18f93567af00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.225.4.192.0|4x|18f935e104c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.225.4.192.1|4x|18f935e104c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.225.42.224.0|4x|18f935e12ae0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.24.249.53.225.42.224.1|4x|18f935e12ae0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.173.249.0.1|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.173.249.0.2|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.28.209.224.174.126.128.2|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.92.0.1|4x|2436da505c00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.92.0.2|4x|2436da505c00 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.101.224.1|4x|2436da5065e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.101.224.2|4x|2436da5065e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.103.64.1|4x|2436da506740 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.103.64.2|4x|2436da506740 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.36.54.218.80.109.224.2|4x|2436da506de0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.22.96.2|4x|28ac9e341660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.31.224.1|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.52.31.224.2|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.56.69.96.1|4x|28ac9e384560 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.56.69.96.2|4x|28ac9e384560 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.119.32.1|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.119.32.2|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.131.224.1|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.59.131.224.2|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.47.192.1|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.47.192.2|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.128.0|4x|28ac9e3d3880 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.128.1|4x|28ac9e3d3880 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.128.2|4x|28ac9e3d3880 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.192.0|4x|28ac9e3d38c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.192.1|4x|28ac9e3d38c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.61.56.192.2|4x|28ac9e3d38c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.69.128.160.1|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.69.128.160.2|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.197.128.1|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.197.128.2|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.0.0|4x|28ac9e49c600 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.0.1|4x|28ac9e49c600 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.0.2|4x|28ac9e49c600 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.96.1|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.73.198.96.2|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.76.139.32.0|4x|28ac9e4c8b20 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.76.139.32.1|4x|28ac9e4c8b20 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.76.139.32.2|4x|28ac9e4c8b20 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.40.172.158.77.225.160.2|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.6.101.160.0|4x|588b1c0665a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.6.101.160.1|4x|588b1c0665a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.6.111.192.0|4x|588b1c066fc0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.6.111.192.1|4x|588b1c066fc0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.7.225.128.0|4x|588b1c07e180 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.7.225.128.1|4x|588b1c07e180 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.8.101.0.0|4x|588b1c086500 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.8.101.0.1|4x|588b1c086500 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.8.178.160.0|4x|588b1c08b2a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.8.178.160.1|4x|588b1c08b2a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.9.132.128.0|4x|588b1c098480 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.9.132.128.1|4x|588b1c098480 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.15.230.128.0|4x|588b1c0fe680 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.15.230.128.1|4x|588b1c0fe680 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.184.54.32.0|4x|588b1cb83620 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.184.54.32.1|4x|588b1cb83620 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.184.116.64.0|4x|588b1cb87440 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.88.139.28.184.116.64.1|4x|588b1cb87440 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.112.105.90.156.95.64.0|4x|70695a9c5f40 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.112.105.90.156.95.64.1|4x|70695a9c5f40 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.112.105.90.156.95.64.2|4x|70695a9c5f40 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.180.222.49.102.89.160.0|4x|b4de316659a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.180.222.49.102.89.160.1|4x|b4de316659a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.180.222.49.102.89.160.2|4x|b4de316659a0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.244.219.230.228.7.192.1|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.1.244.219.230.228.7.192.2|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.2.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.153.160.0|4|02 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.153.160.1|4|02 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.153.160.2|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.154.224.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.154.224.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.60.16.104.154.224.2|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.223.29.42.246.64.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.223.29.42.246.64.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.0.223.29.42.246.64.2|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.69.209.213.189.0.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.69.209.213.189.0.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.69.209.213.189.0.2|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.30.64.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.30.64.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.170.96.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.170.96.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.247.160.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.28.247.160.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.9.128.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.9.128.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.160.64.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.160.64.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.164.0.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.164.0.1|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.164.64.0|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.164.64.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.167.160.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.167.160.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.205.32.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.205.32.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.212.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.212.160.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.230.64.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.230.64.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.230.96.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.8.123.135.29.230.96.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.95.147.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.95.147.160.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.97.136.32.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.97.136.32.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.102.87.0.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.102.87.0.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.102.134.96.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.102.134.96.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.103.175.0.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.103.175.0.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.225.4.192.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.225.4.192.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.225.42.224.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.24.249.53.225.42.224.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.173.249.0.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.173.249.0.1|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.173.249.0.2|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.174.126.128.0|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.174.126.128.1|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.28.209.224.174.126.128.2|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.92.0.0|4|05 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.92.0.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.92.0.2|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.101.224.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.101.224.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.101.224.2|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.103.64.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.103.64.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.103.64.2|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.109.224.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.109.224.1|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.36.54.218.80.109.224.2|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.22.96.0|4|06 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.22.96.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.22.96.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.31.224.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.31.224.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.52.31.224.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.56.69.96.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.56.69.96.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.56.69.96.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.119.32.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.119.32.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.119.32.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.131.224.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.131.224.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.59.131.224.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.47.192.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.47.192.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.47.192.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.128.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.128.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.128.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.192.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.192.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.61.56.192.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.69.128.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.69.128.160.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.69.128.160.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.197.128.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.197.128.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.197.128.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.0.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.0.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.0.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.96.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.96.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.73.198.96.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.76.139.32.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.76.139.32.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.76.139.32.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.77.225.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.77.225.160.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.40.172.158.77.225.160.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.6.101.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.6.101.160.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.6.111.192.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.6.111.192.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.7.225.128.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.7.225.128.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.8.101.0.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.8.101.0.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.8.178.160.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.8.178.160.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.9.132.128.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.9.132.128.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.15.230.128.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.15.230.128.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.184.54.32.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.184.54.32.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.184.116.64.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.88.139.28.184.116.64.1|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.112.105.90.156.95.64.0|4|07 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.112.105.90.156.95.64.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.112.105.90.156.95.64.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.180.222.49.102.89.160.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.180.222.49.102.89.160.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.180.222.49.102.89.160.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.244.219.230.228.7.192.0|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.244.219.230.228.7.192.1|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.3.244.219.230.228.7.192.2|4|04 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.4.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.3.1.5.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.6.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.153.160.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.60.16.104.154.224.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.0.223.29.42.246.64.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.69.209.213.189.0.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.30.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.170.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.247.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.9.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.160.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.164.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.164.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.167.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.205.32.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.212.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.230.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.230.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.95.147.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.97.136.32.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.102.87.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.102.134.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.103.175.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.225.4.192.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.225.42.224.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.173.249.0.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.28.209.224.174.126.128.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.92.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.92.0.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.101.224.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.101.224.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.103.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.103.64.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.36.54.218.80.109.224.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.22.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.22.96.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.52.31.224.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.56.69.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.56.69.96.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.119.32.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.119.32.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.131.224.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.59.131.224.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.47.192.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.47.192.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.128.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.192.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.61.56.192.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.69.128.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.69.128.160.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.197.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.197.128.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.0.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.96.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.73.198.96.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.76.139.32.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.76.139.32.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.40.172.158.77.225.160.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.6.101.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.6.111.192.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.7.225.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.8.101.0.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.8.178.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.9.132.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.15.230.128.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.184.54.32.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.184.116.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.112.105.90.156.95.64.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.112.105.90.156.95.64.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.180.222.49.102.89.160.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.180.222.49.102.89.160.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.244.219.230.228.7.192.0|2|5 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.3.1.7.244.219.230.228.7.192.2|2|4 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.153.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.60.16.104.154.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.0.223.29.42.246.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.69.209.213.189.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.30.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.170.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.28.247.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.9.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.160.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.164.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.167.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.205.32.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.212.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.8.123.135.29.230.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.95.147.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.97.136.32.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.87.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.102.134.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.103.175.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.4.192.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.24.249.53.225.42.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.173.249.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.28.209.224.174.126.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.92.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.101.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.103.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.36.54.218.80.109.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.22.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.52.31.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.56.69.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.119.32.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.59.131.224.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.47.192.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.61.56.192.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.69.128.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.197.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.73.198.96.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.76.139.32.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.40.172.158.77.225.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.101.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.6.111.192.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.7.225.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.101.0.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.8.178.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.9.132.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.15.230.128.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.54.32.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.88.139.28.184.116.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.112.105.90.156.95.64.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.180.222.49.102.89.160.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.0.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.0.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.0.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.1.3|2|1 +1.3.6.1.4.1.9.9.513.1.2.4.1.4.244.219.230.228.7.192.1.4|2|1 +1.3.6.1.4.1.9.9.513.1.2.7.1.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.2.7.1.1.2|2|2 +1.3.6.1.4.1.9.9.513.1.2.7.1.2.1|2|-70 +1.3.6.1.4.1.9.9.513.1.2.7.1.2.2|2|-70 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.69.209.213.189.0.0|66|12692 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.69.209.213.189.0.1|66|13398 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.30.64.0|66|19 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.170.96.0|66|10740 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.170.96.1|66|2887 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.247.160.0|66|172 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.28.247.160.1|66|354 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.160.64.0|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.160.64.1|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.164.64.0|66|38 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.164.64.1|66|12 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.167.160.0|66|94 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.167.160.1|66|333 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.212.160.0|66|43 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.212.160.1|66|31 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.230.64.0|66|9 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.230.64.1|66|9 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.230.96.0|66|143 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.8.123.135.29.230.96.1|66|28 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.102.87.0.0|66|76 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.102.87.0.1|66|141 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.102.134.96.0|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.103.175.0.0|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.225.4.192.0|66|3 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.225.4.192.1|66|3 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.225.42.224.0|66|20 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.24.249.53.225.42.224.1|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.92.0.0|66|18678 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.92.0.1|66|626 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.101.224.0|66|16023 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.101.224.1|66|769 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.103.64.0|66|21003 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.103.64.1|66|5990 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.109.224.0|66|5860 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.109.224.1|66|6253 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.22.96.0|66|2634 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.22.96.1|66|4964 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.31.224.0|66|43414 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.31.224.1|66|46731 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.56.69.96.0|66|55310 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.56.69.96.1|66|3999 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.119.32.0|66|41 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.119.32.1|66|30 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.131.224.0|66|25858 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.131.224.1|66|59215 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.47.192.0|66|4698 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.47.192.1|66|3218 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.128.1|66|16 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.192.0|66|13 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.192.1|66|33 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.69.128.160.0|66|85 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.69.128.160.1|66|120 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.197.128.0|66|2123 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.197.128.1|66|1229 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.0.0|66|1142 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.0.1|66|232 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.96.0|66|1102 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.96.1|66|406 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.76.139.32.0|66|434 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.76.139.32.1|66|806 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.77.225.160.0|66|2944 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.77.225.160.1|66|2132 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.6.101.160.0|66|466 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.6.101.160.1|66|117 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.6.111.192.0|66|5205 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.6.111.192.1|66|6619 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.7.225.128.0|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.7.225.128.1|66|17 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.8.101.0.0|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.8.101.0.1|66|28 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.8.178.160.0|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.8.178.160.1|66|74 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.9.132.128.0|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.9.132.128.1|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.15.230.128.0|66|1212 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.15.230.128.1|66|253 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.184.54.32.0|66|2970 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.184.54.32.1|66|58 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.184.116.64.0|66|348 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.88.139.28.184.116.64.1|66|259 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.180.222.49.102.89.160.0|66|202700 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.180.222.49.102.89.160.1|66|142700 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.244.219.230.228.7.192.0|66|29451 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.244.219.230.228.7.192.1|66|1488 +1.3.6.1.4.1.9.9.513.1.2.8.1.1.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.69.209.213.189.0.1|66|14 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.92.0.0|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.101.224.0|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.101.224.1|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.103.64.0|66|78 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.103.64.1|66|32 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.109.224.0|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.109.224.1|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.22.96.0|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.22.96.1|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.31.224.0|66|643 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.31.224.1|66|412 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.56.69.96.0|66|116 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.56.69.96.1|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.131.224.0|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.131.224.1|66|696 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.47.192.0|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.47.192.1|66|26 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.197.128.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.76.139.32.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.77.225.160.0|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.77.225.160.1|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.180.222.49.102.89.160.0|66|1284 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.180.222.49.102.89.160.1|66|4241 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.244.219.230.228.7.192.0|66|417 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.244.219.230.228.7.192.1|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.2.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.30.64.0|66|19 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.170.96.0|66|10740 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.170.96.1|66|2887 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.247.160.0|66|172 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.28.247.160.1|66|354 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.160.64.0|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.160.64.1|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.164.64.0|66|38 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.164.64.1|66|12 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.167.160.0|66|94 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.167.160.1|66|333 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.212.160.0|66|43 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.212.160.1|66|31 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.230.64.0|66|9 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.230.64.1|66|9 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.230.96.0|66|143 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.8.123.135.29.230.96.1|66|28 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.102.87.0.0|66|76 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.102.87.0.1|66|141 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.102.134.96.0|66|8 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.103.175.0.0|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.225.4.192.0|66|3 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.225.4.192.1|66|3 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.225.42.224.0|66|20 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.24.249.53.225.42.224.1|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.6.101.160.0|66|466 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.6.101.160.1|66|117 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.6.111.192.0|66|5205 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.6.111.192.1|66|6619 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.7.225.128.0|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.7.225.128.1|66|17 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.8.101.0.0|66|4 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.8.101.0.1|66|28 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.8.178.160.0|66|1 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.8.178.160.1|66|74 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.9.132.128.0|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.9.132.128.1|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.15.230.128.0|66|1212 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.15.230.128.1|66|253 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.184.54.32.0|66|2970 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.184.54.32.1|66|58 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.184.116.64.0|66|348 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.88.139.28.184.116.64.1|66|259 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.3.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.153.160.0|66|509409518 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.153.160.1|66|48626341 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.154.224.0|66|685561008 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.154.224.1|66|8898260 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.223.29.42.246.64.0|66|74377037 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.223.29.42.246.64.1|66|548548 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.69.209.213.189.0.0|66|784597585 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.69.209.213.189.0.1|66|360305659 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.30.64.0|66|300269951 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.30.64.1|66|91088650 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.170.96.0|66|372659804 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.170.96.1|66|30904309 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.247.160.0|66|102762599 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.28.247.160.1|66|19672524 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.9.128.0|66|200495236 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.9.128.1|66|11855344 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.160.64.0|66|351185173 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.160.64.1|66|130092490 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.164.0.0|66|222918891 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.164.0.1|66|21909634 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.164.64.0|66|162783028 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.164.64.1|66|87394445 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.167.160.0|66|476069181 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.167.160.1|66|342003035 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.205.32.0|66|193857405 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.205.32.1|66|37102963 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.212.160.0|66|515135639 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.212.160.1|66|173155616 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.230.64.0|66|350063260 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.230.64.1|66|41629237 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.230.96.0|66|260011236 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.8.123.135.29.230.96.1|66|329410046 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.95.147.160.0|66|12642948 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.95.147.160.1|66|313469 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.97.136.32.0|66|132860533 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.97.136.32.1|66|81358241 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.102.87.0.0|66|507140268 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.102.87.0.1|66|274227930 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.102.134.96.0|66|398352 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.102.134.96.1|66|143316 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.103.175.0.0|66|313018929 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.103.175.0.1|66|81278032 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.225.4.192.0|66|265360620 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.225.4.192.1|66|79262584 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.225.42.224.0|66|271216362 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.24.249.53.225.42.224.1|66|41463056 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.173.249.0.0|66|436982913 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.173.249.0.1|66|109773668 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.174.126.128.0|66|570543270 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.174.126.128.1|66|100889662 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.92.0.0|66|540799875 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.92.0.1|66|505352343 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.101.224.0|66|1010991087 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.101.224.1|66|2151326039 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.103.64.0|66|34318856 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.103.64.1|66|5145679 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.109.224.0|66|991726973 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.109.224.1|66|485139836 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.22.96.0|66|511451171 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.22.96.1|66|3874266 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.31.224.0|66|1299875805 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.31.224.1|66|1425539943 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.56.69.96.0|66|3702931545 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.56.69.96.1|66|1903251280 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.119.32.0|66|638003452 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.119.32.1|66|2688244 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.131.224.0|66|427196798 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.131.224.1|66|1723020044 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.47.192.0|66|244351408 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.47.192.1|66|723784201 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.128.0|66|221653014 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.128.1|66|1723718 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.192.0|66|586956692 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.192.1|66|89661528 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.69.128.160.0|66|417369531 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.69.128.160.1|66|315606722 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.197.128.0|66|706297433 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.197.128.1|66|73039399 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.0.0|66|272700829 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.0.1|66|221720112 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.96.0|66|794424466 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.96.1|66|3212106 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.76.139.32.0|66|386732237 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.76.139.32.1|66|18300195 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.77.225.160.0|66|736083346 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.77.225.160.1|66|369130373 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.6.101.160.0|66|1287562590 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.6.101.160.1|66|1882645793 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.6.111.192.0|66|4136005886 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.6.111.192.1|66|1963635805 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.7.225.128.0|66|265408791 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.7.225.128.1|66|85510053 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.8.101.0.0|66|306156650 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.8.101.0.1|66|77606478 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.8.178.160.0|66|401127959 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.8.178.160.1|66|216046409 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.9.132.128.0|66|249190303 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.9.132.128.1|66|119442885 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.15.230.128.0|66|1007923715 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.15.230.128.1|66|745733744 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.184.54.32.0|66|4170023974 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.184.54.32.1|66|3277482763 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.184.116.64.0|66|1675622077 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.88.139.28.184.116.64.1|66|4101756109 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.112.105.90.156.95.64.0|66|330349470 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.112.105.90.156.95.64.1|66|468372 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.180.222.49.102.89.160.0|66|525812561 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.180.222.49.102.89.160.1|66|25704134 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.244.219.230.228.7.192.0|66|4192668487 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.244.219.230.228.7.192.1|66|1763535188 +1.3.6.1.4.1.9.9.513.1.2.8.1.4.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.69.209.213.189.0.0|66|70348049 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.69.209.213.189.0.1|66|66984183 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.30.64.0|66|300260239 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.30.64.1|66|91043025 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.170.96.0|66|373137943 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.170.96.1|66|31033442 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.247.160.0|66|102813261 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.28.247.160.1|66|19678568 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.9.128.0|66|200471025 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.9.128.1|66|11851787 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.160.64.0|66|351177914 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.160.64.1|66|130080333 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.164.0.0|66|222898685 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.164.0.1|66|21909358 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.164.64.0|66|162747897 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.164.64.1|66|87371762 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.167.160.0|66|476059805 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.167.160.1|66|342006142 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.205.32.0|66|193849590 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.205.32.1|66|37098103 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.212.160.0|66|515126502 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.212.160.1|66|173141973 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.230.64.0|66|350058565 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.230.64.1|66|41458079 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.230.96.0|66|259990627 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.8.123.135.29.230.96.1|66|329410138 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.95.147.160.0|66|12635531 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.95.147.160.1|66|313523 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.97.136.32.0|66|132835425 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.97.136.32.1|66|81337472 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.102.87.0.0|66|507132771 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.102.87.0.1|66|274219256 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.102.134.96.0|66|396918 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.102.134.96.1|66|142814 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.103.175.0.0|66|313010879 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.103.175.0.1|66|81256875 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.225.4.192.0|66|265355631 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.225.4.192.1|66|79257362 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.225.42.224.0|66|271209098 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.24.249.53.225.42.224.1|66|41459730 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.92.0.0|66|718813584 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.92.0.1|66|38194034 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.101.224.0|66|393979629 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.101.224.1|66|81836372 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.103.64.0|66|270424272 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.103.64.1|66|208098692 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.109.224.0|66|140820968 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.109.224.1|66|34618309 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.22.96.0|66|103938179 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.22.96.1|66|18893492 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.31.224.0|66|1409961711 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.31.224.1|66|1176495779 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.56.69.96.0|66|981947495 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.56.69.96.1|66|57196551 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.119.32.0|66|291034025 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.119.32.1|66|129695 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.131.224.0|66|3368082266 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.131.224.1|66|927143514 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.47.192.0|66|730095450 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.47.192.1|66|174358383 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.128.0|66|4012437 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.128.1|66|8341 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.192.0|66|46890777 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.192.1|66|461183 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.69.128.160.0|66|52567838 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.69.128.160.1|66|13574861 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.197.128.0|66|237771195 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.197.128.1|66|30080926 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.0.0|66|112978120 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.0.1|66|3991024 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.96.0|66|355544032 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.96.1|66|205447 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.76.139.32.0|66|14137571 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.76.139.32.1|66|426316 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.77.225.160.0|66|140178501 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.77.225.160.1|66|24546075 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.6.101.160.0|66|1288112742 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.6.101.160.1|66|1881620086 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.6.111.192.0|66|4136739229 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.6.111.192.1|66|1963330220 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.7.225.128.0|66|265396056 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.7.225.128.1|66|85490468 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.8.101.0.0|66|306139570 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.8.101.0.1|66|77586999 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.8.178.160.0|66|401106762 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.8.178.160.1|66|216024196 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.9.132.128.0|66|249180527 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.9.132.128.1|66|119434017 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.15.230.128.0|66|1008423451 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.15.230.128.1|66|745563231 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.184.54.32.0|66|4170837373 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.184.54.32.1|66|3277161547 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.184.116.64.0|66|1676450348 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.88.139.28.184.116.64.1|66|4101173839 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.112.105.90.156.95.64.0|66|603212 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.112.105.90.156.95.64.1|66|7387 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.180.222.49.102.89.160.0|66|824242407 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.180.222.49.102.89.160.1|66|778765439 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.244.219.230.228.7.192.0|66|1266768462 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.244.219.230.228.7.192.1|66|126358318 +1.3.6.1.4.1.9.9.513.1.2.8.1.5.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.153.160.0|66|6134669 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.153.160.1|66|103971103 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.154.224.0|66|6046024 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.154.224.1|66|95633317 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.223.29.42.246.64.0|66|1647551 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.223.29.42.246.64.1|66|18352895 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.69.209.213.189.0.0|66|2157946 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.69.209.213.189.0.1|66|13270974 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.30.64.0|66|150179 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.30.64.1|66|5263 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.170.96.0|66|203120142 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.170.96.1|66|158315372 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.247.160.0|66|10206273 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.28.247.160.1|66|3592391 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.9.128.0|66|121 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.9.128.1|66|234 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.160.64.0|66|310228 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.160.64.1|66|6729 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.164.0.0|66|266 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.164.0.1|66|85 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.164.64.0|66|391539 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.164.64.1|66|14620 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.167.160.0|66|670152 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.167.160.1|66|3659709 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.205.32.0|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.205.32.1|66|323 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.212.160.0|66|78207 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.212.160.1|66|2609407 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.230.64.0|66|168093 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.230.64.1|66|44803 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.230.96.0|66|2304464 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.8.123.135.29.230.96.1|66|157168 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.95.147.160.0|66|8826 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.95.147.160.1|66|4327 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.97.136.32.0|66|87 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.97.136.32.1|66|12 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.102.87.0.0|66|329111 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.102.87.0.1|66|2105187 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.102.134.96.0|66|1465646 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.102.134.96.1|66|130965 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.103.175.0.0|66|728 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.103.175.0.1|66|218 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.225.4.192.0|66|151225 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.225.4.192.1|66|2371 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.225.42.224.0|66|32488 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.24.249.53.225.42.224.1|66|1178281 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.173.249.0.0|66|3350621 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.173.249.0.1|66|84206511 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.174.126.128.0|66|5307037 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.174.126.128.1|66|46592648 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.92.0.0|66|1160244 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.92.0.1|66|13632010 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.101.224.0|66|4171985 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.101.224.1|66|53148785 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.103.64.0|66|8649633 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.103.64.1|66|133691776 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.109.224.0|66|542347 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.109.224.1|66|5890993 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.22.96.0|66|53208 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.22.96.1|66|10277289 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.31.224.0|66|17521167 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.31.224.1|66|11394906 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.56.69.96.0|66|5789005 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.56.69.96.1|66|13880590 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.119.32.0|66|207 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.119.32.1|66|1142 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.131.224.0|66|5043942 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.131.224.1|66|163674562 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.47.192.0|66|445671 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.47.192.1|66|11557943 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.128.0|66|65 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.128.1|66|3797 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.192.0|66|1620 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.192.1|66|1484 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.69.128.160.0|66|51619 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.69.128.160.1|66|41598 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.197.128.0|66|253553 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.197.128.1|66|160321 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.0.0|66|142845 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.0.1|66|47439 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.96.0|66|95954 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.96.1|66|58478 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.76.139.32.0|66|42195 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.76.139.32.1|66|137974 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.77.225.160.0|66|1061371 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.77.225.160.1|66|6163502 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.6.101.160.0|66|3959079 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.6.101.160.1|66|43438075 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.6.111.192.0|66|99994882 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.6.111.192.1|66|772508160 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.7.225.128.0|66|42263 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.7.225.128.1|66|12887031 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.8.101.0.0|66|174462 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.8.101.0.1|66|2098921 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.8.178.160.0|66|162988 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.8.178.160.1|66|1079569 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.9.132.128.0|66|2513739 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.9.132.128.1|66|1588690 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.15.230.128.0|66|5665543 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.15.230.128.1|66|24202056 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.184.54.32.0|66|5450277 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.184.54.32.1|66|7230237 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.184.116.64.0|66|7096540 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.88.139.28.184.116.64.1|66|47983756 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.112.105.90.156.95.64.0|66|2 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.112.105.90.156.95.64.1|66|517 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.180.222.49.102.89.160.0|66|219422314 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.180.222.49.102.89.160.1|66|409596055 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.244.219.230.228.7.192.0|66|6449399 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.244.219.230.228.7.192.1|66|8545722 +1.3.6.1.4.1.9.9.513.1.2.8.1.6.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.153.160.0|66|75559434 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.153.160.1|66|86819421 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.154.224.0|66|68202801 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.154.224.1|66|84062417 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.223.29.42.246.64.0|66|62133262 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.223.29.42.246.64.1|66|81675491 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.69.209.213.189.0.0|66|63073679 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.69.209.213.189.0.1|66|88967987 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.30.64.0|66|65651974 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.30.64.1|66|86037077 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.170.96.0|66|716174368 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.170.96.1|66|863579168 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.247.160.0|66|64604960 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.28.247.160.1|66|86167277 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.9.128.0|66|64968539 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.9.128.1|66|84585329 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.160.64.0|66|65867325 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.160.64.1|66|85599247 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.164.0.0|66|62944244 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.164.0.1|66|83566728 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.164.64.0|66|65342660 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.164.64.1|66|85969201 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.167.160.0|66|67426052 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.167.160.1|66|90105374 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.205.32.0|66|60446484 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.205.32.1|66|82268896 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.212.160.0|66|64305751 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.212.160.1|66|88859126 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.230.64.0|66|65461073 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.230.64.1|66|83933473 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.230.96.0|66|67731970 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.8.123.135.29.230.96.1|66|89866983 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.95.147.160.0|66|59839592 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.95.147.160.1|66|82504866 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.97.136.32.0|66|59188441 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.97.136.32.1|66|82384568 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.102.87.0.0|66|65876074 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.102.87.0.1|66|86291597 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.102.134.96.0|66|32629197 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.102.134.96.1|66|45009171 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.103.175.0.0|66|63824964 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.103.175.0.1|66|84898791 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.225.4.192.0|66|64532978 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.225.4.192.1|66|84521538 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.225.42.224.0|66|64875345 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.24.249.53.225.42.224.1|66|83960819 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.173.249.0.0|66|72157146 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.173.249.0.1|66|89073505 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.174.126.128.0|66|70493729 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.174.126.128.1|66|84193450 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.92.0.0|66|677482189 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.92.0.1|66|864276325 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.101.224.0|66|679035935 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.101.224.1|66|870306984 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.103.64.0|66|57086028 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.103.64.1|66|84090853 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.109.224.0|66|61419778 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.109.224.1|66|90875389 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.22.96.0|66|58927704 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.22.96.1|66|83805486 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.31.224.0|66|700143319 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.31.224.1|66|914640851 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.56.69.96.0|66|678907955 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.56.69.96.1|66|868585636 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.119.32.0|66|58403643 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.119.32.1|66|81659890 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.131.224.0|66|684251688 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.131.224.1|66|908838983 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.47.192.0|66|662154741 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.47.192.1|66|857894796 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.128.0|66|58368779 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.128.1|66|82090443 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.192.0|66|58551528 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.192.1|66|81996046 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.69.128.160.0|66|58283017 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.69.128.160.1|66|83425157 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.197.128.0|66|59136487 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.197.128.1|66|83721286 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.0.0|66|59371941 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.0.1|66|82766587 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.96.0|66|58954615 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.96.1|66|83177614 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.76.139.32.0|66|59244412 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.76.139.32.1|66|83082967 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.77.225.160.0|66|59958107 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.77.225.160.1|66|83547057 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.6.101.160.0|66|1678741349 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.6.101.160.1|66|1921193750 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.6.111.192.0|66|1645370157 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.6.111.192.1|66|1941593426 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.7.225.128.0|66|62169407 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.7.225.128.1|66|84237410 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.8.101.0.0|66|60995526 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.8.101.0.1|66|82766965 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.8.178.160.0|66|63861121 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.8.178.160.1|66|87600296 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.9.132.128.0|66|62353808 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.9.132.128.1|66|84878262 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.15.230.128.0|66|1682355765 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.15.230.128.1|66|1977580260 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.184.54.32.0|66|1681871209 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.184.54.32.1|66|1963003575 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.184.116.64.0|66|1664328584 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.88.139.28.184.116.64.1|66|1924674869 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.112.105.90.156.95.64.0|66|58395359 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.112.105.90.156.95.64.1|66|81665695 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.180.222.49.102.89.160.0|66|321050640 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.180.222.49.102.89.160.1|66|418284130 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.244.219.230.228.7.192.0|66|685064479 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.244.219.230.228.7.192.1|66|899466665 +1.3.6.1.4.1.9.9.513.1.2.8.1.7.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.69.209.213.189.0.0|66|2179677 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.69.209.213.189.0.1|66|19377610 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.30.64.0|66|8284919 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.30.64.1|66|5166898 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.170.96.0|66|107538005 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.170.96.1|66|31252290 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.247.160.0|66|8280934 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.28.247.160.1|66|6616657 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.9.128.0|66|7569180 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.9.128.1|66|3712778 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.160.64.0|66|8514280 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.160.64.1|66|4728526 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.164.0.0|66|5544578 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.164.0.1|66|2693155 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.164.64.0|66|8158197 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.164.64.1|66|5103504 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.167.160.0|66|10320700 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.167.160.1|66|9460493 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.205.32.0|66|3047445 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.205.32.1|66|1404207 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.212.160.0|66|6945941 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.212.160.1|66|8093650 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.230.64.0|66|8094112 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.230.64.1|66|2150761 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.230.96.0|66|10513669 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.8.123.135.29.230.96.1|66|9034038 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.95.147.160.0|66|2465492 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.95.147.160.1|66|1649209 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.97.136.32.0|66|1789142 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.97.136.32.1|66|1511831 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.102.87.0.0|66|8620289 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.102.87.0.1|66|4487179 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.102.134.96.0|66|1384371 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.102.134.96.1|66|916246 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.103.175.0.0|66|6426298 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.103.175.0.1|66|4025922 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.225.4.192.0|66|7164262 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.225.4.192.1|66|3649566 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.225.42.224.0|66|7487409 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.24.249.53.225.42.224.1|66|1857955 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.92.0.0|66|1869825 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.92.0.1|66|15959691 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.101.224.0|66|4199929 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.101.224.1|66|53096897 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.103.64.0|66|9192024 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.103.64.1|66|148650376 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.109.224.0|66|519164 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.109.224.1|66|8343981 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.22.96.0|66|91752 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.22.96.1|66|10212097 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.31.224.0|66|15650824 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.31.224.1|66|14113717 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.56.69.96.0|66|6354234 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.56.69.96.1|66|18529798 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.119.32.0|66|525 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.119.32.1|66|2743 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.131.224.0|66|2782816 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.131.224.1|66|259188188 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.47.192.0|66|642822 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.47.192.1|66|14141116 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.128.0|66|397 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.128.1|66|16238 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.192.0|66|2582 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.192.1|66|3507 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.69.128.160.0|66|54450 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.69.128.160.1|66|137026 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.197.128.0|66|182269 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.197.128.1|66|414366 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.0.0|66|138190 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.0.1|66|81496 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.96.0|66|144300 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.96.1|66|95717 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.76.139.32.0|66|45112 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.76.139.32.1|66|250571 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.77.225.160.0|66|1910051 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.77.225.160.1|66|8915531 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.6.101.160.0|66|122416988 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.6.101.160.1|66|72537717 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.6.111.192.0|66|97281479 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.6.111.192.1|66|132125294 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.7.225.128.0|66|5517663 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.7.225.128.1|66|3194310 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.8.101.0.0|66|4352515 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.8.101.0.1|66|1690637 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.8.178.160.0|66|7211193 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.8.178.160.1|66|7084964 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.9.132.128.0|66|5751853 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.9.132.128.1|66|5086283 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.15.230.128.0|66|130668702 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.15.230.128.1|66|155478343 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.184.54.32.0|66|130525635 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.184.54.32.1|66|140777974 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.184.116.64.0|66|121925578 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.88.139.28.184.116.64.1|66|100799529 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.112.105.90.156.95.64.0|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.112.105.90.156.95.64.1|66|2881 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.180.222.49.102.89.160.0|66|216996254 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.180.222.49.102.89.160.1|66|452473787 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.244.219.230.228.7.192.0|66|7118848 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.244.219.230.228.7.192.1|66|10914495 +1.3.6.1.4.1.9.9.513.1.2.8.1.8.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.153.160.0|66|12920208 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.153.160.1|66|232449564 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.154.224.0|66|14024898 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.154.224.1|66|204672625 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.223.29.42.246.64.0|66|4185271 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.223.29.42.246.64.1|66|40160565 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.69.209.213.189.0.0|66|3160210 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.69.209.213.189.0.1|66|35017584 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.30.64.0|66|184513 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.30.64.1|66|4854 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.170.96.0|66|407308946 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.170.96.1|66|254383055 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.247.160.0|66|17364929 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.28.247.160.1|66|6244573 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.9.128.0|66|137 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.9.128.1|66|234 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.160.64.0|66|400001 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.160.64.1|66|6101 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.164.0.0|66|272 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.164.0.1|66|85 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.164.64.0|66|722839 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.164.64.1|66|10145 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.167.160.0|66|1210714 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.167.160.1|66|4762135 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.205.32.0|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.205.32.1|66|137 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.212.160.0|66|60975 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.212.160.1|66|6082952 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.230.64.0|66|224907 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.230.64.1|66|37799 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.230.96.0|66|2689365 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.8.123.135.29.230.96.1|66|293418 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.95.147.160.0|66|11186 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.95.147.160.1|66|5681 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.97.136.32.0|66|91 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.97.136.32.1|66|14 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.102.87.0.0|66|320859 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.102.87.0.1|66|3726075 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.102.134.96.0|66|3121831 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.102.134.96.1|66|327561 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.103.175.0.0|66|750 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.103.175.0.1|66|227 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.225.4.192.0|66|204008 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.225.4.192.1|66|2100 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.225.42.224.0|66|32336 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.24.249.53.225.42.224.1|66|3990931 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.173.249.0.0|66|6813562 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.173.249.0.1|66|223029885 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.174.126.128.0|66|12147937 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.174.126.128.1|66|106556134 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.92.0.0|66|812149 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.92.0.1|66|32139111 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.101.224.0|66|3585636 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.101.224.1|66|64573615 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.103.64.0|66|11834505 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.103.64.1|66|297552911 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.109.224.0|66|506278 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.109.224.1|66|14558186 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.22.96.0|66|68176 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.22.96.1|66|17808466 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.31.224.0|66|16356461 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.31.224.1|66|21953772 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.56.69.96.0|66|5279294 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.56.69.96.1|66|16052249 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.119.32.0|66|161 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.119.32.1|66|799 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.131.224.0|66|3414115 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.131.224.1|66|386375347 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.47.192.0|66|383747 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.47.192.1|66|39824545 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.128.0|66|67 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.128.1|66|3557 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.192.0|66|1320 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.192.1|66|1318 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.69.128.160.0|66|76759 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.69.128.160.1|66|34741 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.197.128.0|66|196325 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.197.128.1|66|130018 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.0.0|66|210363 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.0.1|66|38888 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.96.0|66|96301 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.96.1|66|52000 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.76.139.32.0|66|56880 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.76.139.32.1|66|111459 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.77.225.160.0|66|1575417 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.77.225.160.1|66|9769929 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.6.101.160.0|66|2376850 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.6.101.160.1|66|23367494 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.6.111.192.0|66|214988036 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.6.111.192.1|66|1365945322 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.7.225.128.0|66|26871 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.7.225.128.1|66|19657962 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.8.101.0.0|66|206043 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.8.101.0.1|66|1399785 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.8.178.160.0|66|209571 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.8.178.160.1|66|2033037 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.9.132.128.0|66|3478858 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.9.132.128.1|66|1249728 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.15.230.128.0|66|3359410 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.15.230.128.1|66|13128512 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.184.54.32.0|66|8503866 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.184.54.32.1|66|14158395 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.184.116.64.0|66|4692775 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.88.139.28.184.116.64.1|66|37265716 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.112.105.90.156.95.64.0|66|3 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.112.105.90.156.95.64.1|66|449 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.180.222.49.102.89.160.0|66|390579381 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.180.222.49.102.89.160.1|66|702666950 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.244.219.230.228.7.192.0|66|8477499 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.244.219.230.228.7.192.1|66|27237085 +1.3.6.1.4.1.9.9.513.1.2.8.1.9.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.10.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.11.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.153.160.0|66|3299843 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.153.160.1|66|14714072 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.154.224.0|66|2224702 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.154.224.1|66|7625296 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.223.29.42.246.64.0|66|135652 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.223.29.42.246.64.1|66|1084871 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.69.209.213.189.0.0|66|1829583 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.69.209.213.189.0.1|66|17928278 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.30.64.0|66|71157 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.30.64.1|66|2467 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.170.96.0|66|170299044 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.170.96.1|66|12497613 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.247.160.0|66|9883109 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.28.247.160.1|66|5130489 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.9.128.0|66|32 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.9.128.1|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.160.64.0|66|128512 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.160.64.1|66|3162 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.164.0.0|66|66 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.164.0.1|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.164.64.0|66|574275 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.164.64.1|66|4920 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.167.160.0|66|1198889 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.167.160.1|66|1051422 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.205.32.1|66|247 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.212.160.0|66|51924 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.212.160.1|66|1023323 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.230.64.0|66|92111 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.230.64.1|66|25552 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.230.96.0|66|2154708 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.8.123.135.29.230.96.1|66|75332 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.95.147.160.0|66|10397 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.95.147.160.1|66|1091 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.97.136.32.0|66|33 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.97.136.32.1|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.102.87.0.0|66|537767 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.102.87.0.1|66|757225 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.102.134.96.0|66|695120 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.102.134.96.1|66|18342 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.103.175.0.0|66|168 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.103.175.0.1|66|65 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.225.4.192.0|66|71706 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.225.4.192.1|66|948 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.225.42.224.0|66|14178 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.24.249.53.225.42.224.1|66|659767 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.173.249.0.0|66|621521 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.173.249.0.1|66|9782534 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.174.126.128.0|66|2955077 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.174.126.128.1|66|7438662 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.92.0.0|66|2437151 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.92.0.1|66|12427936 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.101.224.0|66|2148344 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.101.224.1|66|17249928 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.103.64.0|66|5438149 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.103.64.1|66|97513337 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.109.224.0|66|364059 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.109.224.1|66|8398131 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.22.96.0|66|62720 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.22.96.1|66|6078777 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.31.224.0|66|10559453 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.31.224.1|66|13216441 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.56.69.96.0|66|2741565 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.56.69.96.1|66|8257636 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.119.32.0|66|578 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.119.32.1|66|2499 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.131.224.0|66|1476022 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.131.224.1|66|141294012 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.47.192.0|66|392435 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.47.192.1|66|9900766 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.128.0|66|171 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.128.1|66|9772 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.192.0|66|774 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.192.1|66|3797 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.69.128.160.0|66|48823 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.69.128.160.1|66|69858 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.197.128.0|66|88950 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.197.128.1|66|272114 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.0.0|66|93930 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.0.1|66|65323 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.96.0|66|103953 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.96.1|66|76766 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.76.139.32.0|66|8002 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.76.139.32.1|66|145118 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.77.225.160.0|66|743765 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.77.225.160.1|66|4244824 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.6.101.160.0|66|1220337 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.6.101.160.1|66|8337634 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.6.111.192.0|66|86807080 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.6.111.192.1|66|132383181 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.7.225.128.0|66|6063 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.7.225.128.1|66|2688878 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.8.101.0.0|66|113902 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.8.101.0.1|66|180074 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.8.178.160.0|66|68289 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.8.178.160.1|66|357515 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.9.132.128.0|66|1706774 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.9.132.128.1|66|133287 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.15.230.128.0|66|4482215 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.15.230.128.1|66|3438591 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.184.54.32.0|66|6152397 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.184.54.32.1|66|749288 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.184.116.64.0|66|3731168 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.88.139.28.184.116.64.1|66|17716014 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.112.105.90.156.95.64.0|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.112.105.90.156.95.64.1|66|2967 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.180.222.49.102.89.160.0|66|113181637 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.180.222.49.102.89.160.1|66|198497639 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.244.219.230.228.7.192.0|66|4876331 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.244.219.230.228.7.192.1|66|8130843 +1.3.6.1.4.1.9.9.513.1.2.8.1.12.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.153.160.0|66|3299843 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.153.160.1|66|14714072 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.154.224.0|66|2224702 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.154.224.1|66|7625296 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.223.29.42.246.64.0|66|135652 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.223.29.42.246.64.1|66|1084871 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.69.209.213.189.0.0|66|1829583 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.69.209.213.189.0.1|66|17928278 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.30.64.0|66|71157 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.30.64.1|66|2467 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.170.96.0|66|170299044 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.170.96.1|66|12497613 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.247.160.0|66|9883109 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.28.247.160.1|66|5130489 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.9.128.0|66|32 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.9.128.1|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.160.64.0|66|128512 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.160.64.1|66|3162 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.164.0.0|66|66 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.164.0.1|66|10 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.164.64.0|66|574275 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.164.64.1|66|4920 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.167.160.0|66|1198889 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.167.160.1|66|1051422 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.205.32.1|66|247 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.212.160.0|66|51924 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.212.160.1|66|1023323 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.230.64.0|66|92111 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.230.64.1|66|25552 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.230.96.0|66|2154708 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.8.123.135.29.230.96.1|66|75332 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.95.147.160.0|66|10397 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.95.147.160.1|66|1091 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.97.136.32.0|66|33 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.97.136.32.1|66|5 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.102.87.0.0|66|537767 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.102.87.0.1|66|757225 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.102.134.96.0|66|695120 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.102.134.96.1|66|18342 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.103.175.0.0|66|168 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.103.175.0.1|66|65 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.225.4.192.0|66|71706 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.225.4.192.1|66|948 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.225.42.224.0|66|14178 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.24.249.53.225.42.224.1|66|659767 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.173.249.0.0|66|621521 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.173.249.0.1|66|9782534 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.174.126.128.0|66|2955077 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.174.126.128.1|66|7438662 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.92.0.0|66|2437151 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.92.0.1|66|12427936 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.101.224.0|66|2148344 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.101.224.1|66|17249928 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.103.64.0|66|5438149 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.103.64.1|66|97513337 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.109.224.0|66|364059 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.109.224.1|66|8398131 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.22.96.0|66|62720 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.22.96.1|66|6078777 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.31.224.0|66|10559453 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.31.224.1|66|13216441 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.56.69.96.0|66|2741565 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.56.69.96.1|66|8257636 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.119.32.0|66|578 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.119.32.1|66|2499 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.131.224.0|66|1476022 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.131.224.1|66|141294012 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.47.192.0|66|392435 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.47.192.1|66|9900766 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.128.0|66|171 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.128.1|66|9772 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.192.0|66|774 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.192.1|66|3797 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.69.128.160.0|66|48823 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.69.128.160.1|66|69858 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.197.128.0|66|88950 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.197.128.1|66|272114 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.0.0|66|93930 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.0.1|66|65323 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.96.0|66|103953 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.96.1|66|76766 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.76.139.32.0|66|8002 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.76.139.32.1|66|145118 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.77.225.160.0|66|743765 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.77.225.160.1|66|4244824 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.6.101.160.0|66|1220337 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.6.101.160.1|66|8337634 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.6.111.192.0|66|86807080 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.6.111.192.1|66|132383181 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.7.225.128.0|66|6063 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.7.225.128.1|66|2688878 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.8.101.0.0|66|113902 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.8.101.0.1|66|180074 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.8.178.160.0|66|68289 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.8.178.160.1|66|357515 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.9.132.128.0|66|1706774 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.9.132.128.1|66|133287 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.15.230.128.0|66|4482215 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.15.230.128.1|66|3438591 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.184.54.32.0|66|6152397 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.184.54.32.1|66|749288 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.184.116.64.0|66|3731168 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.88.139.28.184.116.64.1|66|17716014 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.112.105.90.156.95.64.0|66|6 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.112.105.90.156.95.64.1|66|2967 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.180.222.49.102.89.160.0|66|113181637 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.180.222.49.102.89.160.1|66|198497639 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.244.219.230.228.7.192.0|66|4876331 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.244.219.230.228.7.192.1|66|8130843 +1.3.6.1.4.1.9.9.513.1.2.8.1.13.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.513.1.3.25.0|2|2 +1.3.6.1.4.1.9.9.513.1.3.26.0|2|3 +1.3.6.1.4.1.9.9.513.1.3.27.0|2|0 +1.3.6.1.4.1.9.9.513.1.3.28.0|2|250 +1.3.6.1.4.1.9.9.513.1.3.30.0|2|2 +1.3.6.1.4.1.9.9.513.1.3.31.0|2|2 +1.3.6.1.4.1.9.9.513.1.3.32.0|4|default +1.3.6.1.4.1.9.9.513.1.3.33.0|2|2 +1.3.6.1.4.1.9.9.513.1.3.34.0|2|1440 +1.3.6.1.4.1.9.9.513.1.3.35.0|66|55 +1.3.6.1.4.1.9.9.513.1.3.36.0|4| +1.3.6.1.4.1.9.9.513.1.3.37.0|4| +1.3.6.1.4.1.9.9.513.1.3.38.1.0|2|2 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.1.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.2.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.3.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.0.60.16.104.153.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.0.60.16.104.154.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.0.223.29.42.246.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.69.209.213.189.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.28.30.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.28.170.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.28.247.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.9.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.160.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.164.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.164.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.167.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.205.32|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.212.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.230.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.8.123.135.29.230.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.95.147.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.97.136.32|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.102.87.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.102.134.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.103.175.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.225.4.192|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.24.249.53.225.42.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.28.209.224.173.249.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.28.209.224.174.126.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.36.54.218.80.92.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.36.54.218.80.101.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.36.54.218.80.103.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.36.54.218.80.109.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.52.22.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.52.31.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.56.69.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.59.119.32|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.59.131.224|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.61.47.192|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.61.56.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.61.56.192|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.69.128.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.73.197.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.73.198.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.73.198.96|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.76.139.32|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.40.172.158.77.225.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.6.101.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.6.111.192|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.7.225.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.8.101.0|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.8.178.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.9.132.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.15.230.128|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.184.54.32|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.88.139.28.184.116.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.112.105.90.156.95.64|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.180.222.49.102.89.160|67|0 +1.3.6.1.4.1.9.9.513.1.5.2.1.4.244.219.230.228.7.192|67|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.2.2|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.2.3|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.3.1|4x|f7ffdc +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.3.2|4x|f7ffdc +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.3.3|4x|f7ffdc +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.4.1|66|90 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.4.2|66|90 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.4.3|66|90 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.6.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.6.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.6.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.7.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.7.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.7.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.8.1|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.8.2|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.8.3|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.9.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.9.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.9.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.10.1|4x|000000 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.10.2|4x|000000 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.10.3|4x|000000 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.11.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.11.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.11.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.12.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.12.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.12.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.13.1|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.13.2|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.13.3|66|10 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.14.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.14.2|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.1.1.14.3|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.1.2|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.2.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.2.2|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.3.1|66|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.3.2|66|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.4.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.4.2|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.5.1|66|80 +1.3.6.1.4.1.9.9.513.1.6.1.1.3.2.1.5.2|66|80 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.1.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.2.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.3.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.4.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.5.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.6.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.1.1.7.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.60.16.104.153.160.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.60.16.104.153.160.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.60.16.104.154.224.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.60.16.104.154.224.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.223.29.42.246.64.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.0.223.29.42.246.64.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.69.209.213.189.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.69.209.213.189.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.30.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.30.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.170.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.247.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.9.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.9.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.160.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.160.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.167.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.205.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.205.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.212.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.212.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.8.123.135.29.230.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.95.147.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.97.136.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.97.136.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.87.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.134.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.102.134.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.103.175.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.103.175.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.4.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.4.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.42.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.28.209.224.173.249.0.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.28.209.224.173.249.0.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.28.209.224.174.126.128.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.28.209.224.174.126.128.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.92.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.92.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.92.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.101.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.101.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.103.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.103.64.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.109.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.109.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.22.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.22.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.31.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.31.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.56.69.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.56.69.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.119.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.119.32.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.119.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.131.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.131.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.47.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.47.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.128.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.61.56.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.69.128.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.69.128.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.197.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.197.128.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.76.139.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.76.139.32.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.77.225.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.77.225.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.101.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.101.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.111.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.6.111.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.7.225.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.101.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.178.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.9.132.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.9.132.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.15.230.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.15.230.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.54.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.54.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.116.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.88.139.28.184.116.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.112.105.90.156.95.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.112.105.90.156.95.64.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.112.105.90.156.95.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.180.222.49.102.89.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.180.222.49.102.89.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.244.219.230.228.7.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.244.219.230.228.7.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.2.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.60.16.104.153.160.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.60.16.104.153.160.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.60.16.104.154.224.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.60.16.104.154.224.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.223.29.42.246.64.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.0.223.29.42.246.64.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.69.209.213.189.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.69.209.213.189.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.30.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.30.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.170.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.247.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.9.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.9.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.160.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.160.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.167.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.205.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.205.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.212.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.212.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.8.123.135.29.230.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.95.147.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.97.136.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.97.136.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.87.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.134.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.102.134.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.103.175.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.103.175.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.4.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.4.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.42.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.28.209.224.173.249.0.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.28.209.224.173.249.0.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.28.209.224.174.126.128.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.28.209.224.174.126.128.1.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.92.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.92.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.92.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.101.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.101.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.103.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.103.64.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.109.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.109.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.22.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.22.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.31.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.31.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.56.69.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.56.69.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.119.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.119.32.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.119.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.131.224.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.131.224.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.47.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.47.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.128.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.61.56.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.69.128.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.69.128.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.197.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.197.128.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.0.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.96.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.96.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.76.139.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.76.139.32.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.77.225.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.77.225.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.101.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.101.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.111.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.6.111.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.7.225.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.101.0.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.178.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.9.132.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.9.132.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.15.230.128.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.15.230.128.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.54.32.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.54.32.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.116.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.88.139.28.184.116.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.112.105.90.156.95.64.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.112.105.90.156.95.64.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.112.105.90.156.95.64.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.180.222.49.102.89.160.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.180.222.49.102.89.160.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.244.219.230.228.7.192.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.244.219.230.228.7.192.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.6.1.1.4.2.1.3.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.2.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.3.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.4.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.5.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.1.1.6.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.12.2.1.1.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.15.1.0|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.1.11.78.65.73.32.65.80.32.74.79.73.78|4x|4e4149204150204a4f494e +1.3.6.1.4.1.9.9.513.1.16.1.1.1.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|64656661756c742d61702d70726f66696c65 +1.3.6.1.4.1.9.9.513.1.16.1.1.2.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.2.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.3.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.3.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.4.11.78.65.73.32.65.80.32.74.79.73.78|4x|6a617a7a34557a21 +1.3.6.1.4.1.9.9.513.1.16.1.1.4.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.5.11.78.65.73.32.65.80.32.74.79.73.78|4x|6a617a7a34557a21 +1.3.6.1.4.1.9.9.513.1.16.1.1.5.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.7.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.7.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.8.11.78.65.73.32.65.80.32.74.79.73.78|66|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.8.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.12.11.78.65.73.32.65.80.32.74.79.73.78|66|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.12.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.14.11.78.65.73.32.65.80.32.74.79.73.78|66|120 +1.3.6.1.4.1.9.9.513.1.16.1.1.14.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|120 +1.3.6.1.4.1.9.9.513.1.16.1.1.15.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.15.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.16.11.78.65.73.32.65.80.32.74.79.73.78|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.16.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.17.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.17.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.18.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.18.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.19.11.78.65.73.32.65.80.32.74.79.73.78|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.19.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.20.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.20.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.25.11.78.65.73.32.65.80.32.74.79.73.78|66|1250 +1.3.6.1.4.1.9.9.513.1.16.1.1.25.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|1250 +1.3.6.1.4.1.9.9.513.1.16.1.1.26.11.78.65.73.32.65.80.32.74.79.73.78|66|5 +1.3.6.1.4.1.9.9.513.1.16.1.1.26.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|5 +1.3.6.1.4.1.9.9.513.1.16.1.1.27.11.78.65.73.32.65.80.32.74.79.73.78|66|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.27.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.29.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.29.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.35.11.78.65.73.32.65.80.32.74.79.73.78|66|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.35.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.36.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.36.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.37.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.37.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.39.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.39.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.40.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.40.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.41.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.41.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.42.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.42.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.43.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.43.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.44.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.44.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.45.11.78.65.73.32.65.80.32.74.79.73.78|2|-100 +1.3.6.1.4.1.9.9.513.1.16.1.1.45.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|-100 +1.3.6.1.4.1.9.9.513.1.16.1.1.46.11.78.65.73.32.65.80.32.74.79.73.78|66|8 +1.3.6.1.4.1.9.9.513.1.16.1.1.46.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|8 +1.3.6.1.4.1.9.9.513.1.16.1.1.47.11.78.65.73.32.65.80.32.74.79.73.78|66|10 +1.3.6.1.4.1.9.9.513.1.16.1.1.47.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|10 +1.3.6.1.4.1.9.9.513.1.16.1.1.48.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.48.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.49.11.78.65.73.32.65.80.32.74.79.73.78|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.16.1.1.49.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.50.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.50.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.51.11.78.65.73.32.65.80.32.74.79.73.78|66|10 +1.3.6.1.4.1.9.9.513.1.16.1.1.51.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|10 +1.3.6.1.4.1.9.9.513.1.16.1.1.52.11.78.65.73.32.65.80.32.74.79.73.78|66|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.52.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.53.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.53.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.54.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.54.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.55.11.78.65.73.32.65.80.32.74.79.73.78|66|10 +1.3.6.1.4.1.9.9.513.1.16.1.1.55.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.56.11.78.65.73.32.65.80.32.74.79.73.78|2|-80 +1.3.6.1.4.1.9.9.513.1.16.1.1.56.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|-80 +1.3.6.1.4.1.9.9.513.1.16.1.1.57.11.78.65.73.32.65.80.32.74.79.73.78|66|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.57.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|300 +1.3.6.1.4.1.9.9.513.1.16.1.1.58.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.58.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.59.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.59.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.60.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.60.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.61.11.78.65.73.32.65.80.32.74.79.73.78|2|90 +1.3.6.1.4.1.9.9.513.1.16.1.1.61.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|90 +1.3.6.1.4.1.9.9.513.1.16.1.1.62.11.78.65.73.32.65.80.32.74.79.73.78|2|90 +1.3.6.1.4.1.9.9.513.1.16.1.1.62.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|90 +1.3.6.1.4.1.9.9.513.1.16.1.1.63.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.63.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.64.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.64.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.65.11.78.65.73.32.65.80.32.74.79.73.78|4x|64656661756c742d6d6573682d70726f66696c65 +1.3.6.1.4.1.9.9.513.1.16.1.1.65.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|64656661756c742d6d6573682d70726f66696c65 +1.3.6.1.4.1.9.9.513.1.16.1.1.66.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.66.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.69.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.69.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.70.11.78.65.73.32.65.80.32.74.79.73.78|66|180 +1.3.6.1.4.1.9.9.513.1.16.1.1.70.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|180 +1.3.6.1.4.1.9.9.513.1.16.1.1.71.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.71.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.72.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.72.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.73.11.78.65.73.32.65.80.32.74.79.73.78|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.73.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|000000000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.74.11.78.65.73.32.65.80.32.74.79.73.78|66|59 +1.3.6.1.4.1.9.9.513.1.16.1.1.74.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|59 +1.3.6.1.4.1.9.9.513.1.16.1.1.75.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.75.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.76.11.78.65.73.32.65.80.32.74.79.73.78|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.76.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.77.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.77.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.78.11.78.65.73.32.65.80.32.74.79.73.78|2|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.78.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.79.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.79.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.80.11.78.65.73.32.65.80.32.74.79.73.78|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.80.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.513.1.16.1.1.81.11.78.65.73.32.65.80.32.74.79.73.78|4|default +1.3.6.1.4.1.9.9.513.1.16.1.1.81.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4|default +1.3.6.1.4.1.9.9.513.1.16.1.1.82.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.82.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.83.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.83.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.84.11.78.65.73.32.65.80.32.74.79.73.78|66|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.84.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|66|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.85.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.85.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.86.11.78.65.73.32.65.80.32.74.79.73.78|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.86.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.87.11.78.65.73.32.65.80.32.74.79.73.78|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.87.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.88.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.88.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.89.11.78.65.73.32.65.80.32.74.79.73.78|2|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.89.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|3 +1.3.6.1.4.1.9.9.513.1.16.1.1.90.11.78.65.73.32.65.80.32.74.79.73.78|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.90.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.513.1.16.1.1.91.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.91.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.92.11.78.65.73.32.65.80.32.74.79.73.78|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.92.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.93.11.78.65.73.32.65.80.32.74.79.73.78|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.93.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.94.11.78.65.73.32.65.80.32.74.79.73.78|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.94.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.513.1.16.1.1.95.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.95.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.96.11.78.65.73.32.65.80.32.74.79.73.78|2|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.96.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|30 +1.3.6.1.4.1.9.9.513.1.16.1.1.97.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.97.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.98.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.98.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.99.11.78.65.73.32.65.80.32.74.79.73.78|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.99.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.513.1.16.1.1.100.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.100.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.101.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.101.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.102.11.78.65.73.32.65.80.32.74.79.73.78|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.102.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.513.1.16.1.1.103.11.78.65.73.32.65.80.32.74.79.73.78|2|111 +1.3.6.1.4.1.9.9.513.1.16.1.1.103.18.100.101.102.97.117.108.116.45.97.112.45.112.114.111.102.105.108.101|2|111 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.1.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.0.60.16.104.153.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.0.60.16.104.154.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.0.223.29.42.246.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.69.209.213.189.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.28.30.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.28.170.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.28.247.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.9.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.160.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.164.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.164.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.167.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.205.32|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.212.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.230.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.8.123.135.29.230.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.95.147.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.97.136.32|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.102.87.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.102.134.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.103.175.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.225.4.192|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.24.249.53.225.42.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.28.209.224.173.249.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.28.209.224.174.126.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.36.54.218.80.92.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.36.54.218.80.101.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.36.54.218.80.103.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.36.54.218.80.109.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.52.22.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.52.31.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.56.69.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.59.119.32|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.59.131.224|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.61.47.192|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.61.56.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.61.56.192|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.69.128.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.73.197.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.73.198.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.73.198.96|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.76.139.32|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.40.172.158.77.225.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.6.101.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.6.111.192|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.7.225.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.8.101.0|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.8.178.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.9.132.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.15.230.128|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.184.54.32|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.88.139.28.184.116.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.112.105.90.156.95.64|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.180.222.49.102.89.160|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.2.244.219.230.228.7.192|2|3 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.3.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.0.60.16.104.153.160|66|323 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.0.60.16.104.154.224|66|13 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.0.223.29.42.246.64|66|239 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.69.209.213.189.0|66|203 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.28.30.64|66|191 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.28.170.96|66|149 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.28.247.160|66|1035 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.9.128|66|583 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.160.64|66|921 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.164.0|66|885 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.164.64|66|353 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.167.160|66|362 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.205.32|66|287 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.212.160|66|772 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.230.64|66|1063 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.8.123.135.29.230.96|66|237 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.95.147.160|66|112 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.97.136.32|66|133 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.102.87.0|66|517 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.102.134.96|66|737 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.103.175.0|66|705 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.225.4.192|66|728 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.24.249.53.225.42.224|66|852 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.28.209.224.173.249.0|66|14 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.28.209.224.174.126.128|66|580 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.36.54.218.80.92.0|66|882 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.36.54.218.80.101.224|66|811 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.36.54.218.80.103.64|66|951 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.36.54.218.80.109.224|66|4 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.52.22.96|66|15 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.52.31.224|66|753 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.56.69.96|66|280 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.59.119.32|66|39 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.59.131.224|66|594 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.61.47.192|66|1044 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.61.56.128|66|591 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.61.56.192|66|1069 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.69.128.160|66|47 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.73.197.128|66|115 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.73.198.0|66|486 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.73.198.96|66|998 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.76.139.32|66|588 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.40.172.158.77.225.160|66|61 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.6.101.160|66|376 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.6.111.192|66|885 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.7.225.128|66|559 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.8.101.0|66|177 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.8.178.160|66|48 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.9.132.128|66|802 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.15.230.128|66|126 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.184.54.32|66|57 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.88.139.28.184.116.64|66|684 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.112.105.90.156.95.64|66|691 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.180.222.49.102.89.160|66|227 +1.3.6.1.4.1.9.9.513.1.18.1.1.4.244.219.230.228.7.192|66|207 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.0.60.16.104.153.160|2|45 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.0.60.16.104.154.224|2|1954 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.0.223.29.42.246.64|2|1073 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.69.209.213.189.0|2|214 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.28.30.64|2|1292 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.28.170.96|2|-39 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.28.247.160|2|1095 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.9.128|2|868 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.160.64|2|872 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.164.0|2|1281 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.164.64|2|1005 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.167.160|2|1901 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.205.32|2|810 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.212.160|2|1551 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.230.64|2|816 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.8.123.135.29.230.96|2|982 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.95.147.160|2|1114 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.97.136.32|2|1692 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.102.87.0|2|1538 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.102.134.96|2|222 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.103.175.0|2|792 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.225.4.192|2|497 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.24.249.53.225.42.224|2|758 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.28.209.224.173.249.0|2|1282 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.28.209.224.174.126.128|2|1063 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.36.54.218.80.92.0|2|-1119 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.36.54.218.80.101.224|2|1216 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.36.54.218.80.103.64|2|763 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.36.54.218.80.109.224|2|-74 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.52.22.96|2|868 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.52.31.224|2|823 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.56.69.96|2|2087 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.59.119.32|2|1241 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.59.131.224|2|1293 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.61.47.192|2|373 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.61.56.128|2|857 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.61.56.192|2|1816 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.69.128.160|2|1044 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.73.197.128|2|737 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.73.198.0|2|461 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.73.198.96|2|498 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.76.139.32|2|641 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.40.172.158.77.225.160|2|1166 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.6.101.160|2|2344 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.6.111.192|2|1858 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.7.225.128|2|1464 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.8.101.0|2|3612 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.8.178.160|2|1506 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.9.132.128|2|172 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.15.230.128|2|202 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.184.54.32|2|-1001 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.88.139.28.184.116.64|2|2231 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.112.105.90.156.95.64|2|1165 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.180.222.49.102.89.160|2|3657 +1.3.6.1.4.1.9.9.513.1.18.1.1.5.244.219.230.228.7.192|2|1437 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.6.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.0.60.16.104.153.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.0.60.16.104.154.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.0.223.29.42.246.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.69.209.213.189.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.28.30.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.28.170.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.28.247.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.9.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.160.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.164.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.164.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.167.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.205.32|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.212.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.230.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.8.123.135.29.230.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.95.147.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.97.136.32|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.102.87.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.102.134.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.103.175.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.225.4.192|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.24.249.53.225.42.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.28.209.224.173.249.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.28.209.224.174.126.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.36.54.218.80.92.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.36.54.218.80.101.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.36.54.218.80.103.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.36.54.218.80.109.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.52.22.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.52.31.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.56.69.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.59.119.32|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.59.131.224|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.61.47.192|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.61.56.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.61.56.192|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.69.128.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.73.197.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.73.198.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.73.198.96|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.76.139.32|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.40.172.158.77.225.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.6.101.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.6.111.192|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.7.225.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.8.101.0|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.8.178.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.9.132.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.15.230.128|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.184.54.32|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.88.139.28.184.116.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.112.105.90.156.95.64|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.180.222.49.102.89.160|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.18.1.1.7.244.219.230.228.7.192|4x|0ab73401 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.1.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.2.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.223.29.42.246.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.69.209.213.189.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.30.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.28.247.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.9.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.160.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.164.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.164.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.167.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.212.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.230.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.8.123.135.29.230.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.95.147.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.102.134.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.103.175.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.225.4.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.24.249.53.225.42.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.92.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.109.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.131.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.77.225.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.6.101.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.6.111.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.7.225.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.8.101.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.8.178.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.9.132.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.15.230.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.88.139.28.184.116.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.112.105.90.156.95.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.180.222.49.102.89.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.3.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.223.29.42.246.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.69.209.213.189.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.30.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.28.247.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.9.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.160.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.164.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.164.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.167.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.212.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.230.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.8.123.135.29.230.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.95.147.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.102.134.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.103.175.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.225.4.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.24.249.53.225.42.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.92.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.109.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.131.224.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.96.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.77.225.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.6.101.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.6.111.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.7.225.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.8.101.0.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.8.178.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.9.132.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.15.230.128.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.88.139.28.184.116.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.112.105.90.156.95.64.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.180.222.49.102.89.160.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.4.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.5.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.513.1.21.1.1.6.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.7.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.513.1.21.1.1.8.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.9.9.517.1.2.1.1.5.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.9.9.517.1.3.1.1.1.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4x|64656661756c742d666c65782d70726f66696c65 +1.3.6.1.4.1.9.9.517.1.3.1.1.5.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.11.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.12.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.13.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.15.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.17.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.517.1.3.1.1.26.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.27.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.29.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|66|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.30.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.32.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.33.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4x|00000000 +1.3.6.1.4.1.9.9.517.1.3.1.1.34.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.517.1.3.1.1.37.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.517.1.3.1.1.38.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.517.1.3.1.1.39.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.517.1.3.1.1.40.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.41.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.42.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.43.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.44.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.45.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4x|64656661756c7420666c65782070726f66696c65 +1.3.6.1.4.1.9.9.517.1.3.1.1.46.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.48.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.49.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.50.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.51.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4x|64656661756c742d7378702d70726f66696c65 +1.3.6.1.4.1.9.9.517.1.3.1.1.52.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.517.1.3.1.1.53.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.54.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.517.1.3.1.1.55.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.56.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.1.1.57.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.517.1.3.6.1.1.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101.12.78.65.73.45.73.83.69.45.79.78.76.89|4x|4e41492d4953452d4f4e4c59 +1.3.6.1.4.1.9.9.517.1.3.6.1.2.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101.12.78.65.73.45.73.83.69.45.79.78.76.89|2|1 +1.3.6.1.4.1.9.9.517.1.3.6.1.4.20.100.101.102.97.117.108.116.45.102.108.101.120.45.112.114.111.102.105.108.101.12.78.65.73.45.73.83.69.45.79.78.76.89|2|1 +1.3.6.1.4.1.9.9.517.1.3.12.1.1.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|4x|64656661756c742d7378702d70726f66696c65 +1.3.6.1.4.1.9.9.517.1.3.12.1.2.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.517.1.3.12.1.3.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.517.1.3.12.1.4.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|66|90 +1.3.6.1.4.1.9.9.517.1.3.12.1.5.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|66|120 +1.3.6.1.4.1.9.9.517.1.3.12.1.6.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|66|120 +1.3.6.1.4.1.9.9.517.1.3.12.1.7.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|66|120 +1.3.6.1.4.1.9.9.517.1.3.12.1.8.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|66|120 +1.3.6.1.4.1.9.9.517.1.3.12.1.9.19.100.101.102.97.117.108.116.45.115.120.112.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.518.2.1.1.0|2|1 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.1|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.2|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.3|2|1 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.4|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.5|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.6|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.7|2|0 +1.3.6.1.4.1.9.9.518.2.1.2.1.4.8|2|0 +1.3.6.1.4.1.9.9.518.2.1.3.0|2|2 +1.3.6.1.4.1.9.9.518.2.1.4.0|2|24 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.1.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.518.2.2.2.1.2.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.2|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.3|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.4|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.5|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.6|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.7|2|2 +1.3.6.1.4.1.9.9.520.1.5.1.1.2.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.2|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.3|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.5|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.6|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.7|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.1.8|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.2.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.1|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.2|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.3|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.4|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.5|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.6|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.7|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.3.8|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.1|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.2|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.3|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.5|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.6|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.7|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.4.8|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.1|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.2|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.3|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.4|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.5|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.6|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.7|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.5.8|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.1|4x|9000 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.2|4x|2800 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.3|4x|2800 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.4|4x|0000 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.5|4x|2800 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.6|4x|2000 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.7|4x|2800 +1.3.6.1.4.1.9.9.521.1.1.1.1.6.8|4x|2800 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.1|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.2|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.3|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.4|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.5|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.6|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.7|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.7.8|2|3 +1.3.6.1.4.1.9.9.521.1.1.1.1.8.1|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.2|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.3|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.4|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.5|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.6|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.7|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.8.8|4x|2a2a2a2a2a2a2a2a +1.3.6.1.4.1.9.9.521.1.1.1.1.9.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.9.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.1|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.2|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.3|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.4|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.5|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.6|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.7|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.11.8|66|20 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.12.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.1|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.2|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.3|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.4|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.5|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.6|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.7|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.13.8|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.1|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.2|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.3|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.4|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.5|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.6|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.7|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.14.8|66|200 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.1|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.2|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.3|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.4|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.5|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.6|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.7|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.15.8|66|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.1|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.2|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.3|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.4|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.5|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.6|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.7|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.16.8|2|1 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.17.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.18.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.1|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.2|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.3|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.4|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.5|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.6|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.7|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.19.8|66|1500 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.1|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.2|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.3|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.4|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.5|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.6|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.7|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.20.8|66|400 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.1|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.2|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.3|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.4|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.5|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.6|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.7|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.21.8|2|5 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.22.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.1|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.2|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.3|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.4|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.5|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.6|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.7|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.23.8|66|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.1|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.2|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.3|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.4|4x|00 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.5|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.6|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.7|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.24.8|4x|40 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.1|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.2|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.3|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.4|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.5|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.6|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.7|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.25.8|2|0 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.26.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.27.8|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.1|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.2|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.3|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.4|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.5|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.6|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.7|2|2 +1.3.6.1.4.1.9.9.521.1.1.1.1.28.8|2|2 +1.3.6.1.4.1.9.9.522.1.1.3.0|2|3 +1.3.6.1.4.1.9.9.522.1.1.4.0|66|15 +1.3.6.1.4.1.9.9.522.1.1.5.0|66|5 +1.3.6.1.4.1.9.9.522.1.1.8.0|66|0 +1.3.6.1.4.1.9.9.522.1.1.9.0|66|0 +1.3.6.1.4.1.9.9.522.1.1.11.0|66|0 +1.3.6.1.4.1.9.9.522.1.1.18.0|66|2 +1.3.6.1.4.1.9.9.522.1.1.19.0|66|2 +1.3.6.1.4.1.9.9.522.1.1.20.0|66|2 +1.3.6.1.4.1.9.9.522.1.1.21.0|66|5 +1.3.6.1.4.1.9.9.522.1.1.22.0|2|0 +1.3.6.1.4.1.9.9.522.1.1.23.0|66|5 +1.3.6.1.4.1.9.9.522.1.1.24.0|2|1 +1.3.6.1.4.1.9.9.522.1.1.25.0|66|1200 +1.3.6.1.4.1.9.9.524.1.1.1.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.2.0|66|75 +1.3.6.1.4.1.9.9.524.1.1.3.0|66|6 +1.3.6.1.4.1.9.9.524.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.5.0|66|5 +1.3.6.1.4.1.9.9.524.1.1.6.0|66|0 +1.3.6.1.4.1.9.9.524.1.1.8.0|2|1 +1.3.6.1.4.1.9.9.524.1.1.9.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.10.0|2|6 +1.3.6.1.4.1.9.9.524.1.1.13.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.14.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.15.0|2|2 +1.3.6.1.4.1.9.9.524.1.1.16.0|66|0 +1.3.6.1.4.1.9.9.524.1.1.17.0|2|5 +1.3.6.1.4.1.9.9.524.1.1.18.0|2|75 +1.3.6.1.4.1.9.9.524.1.1.19.0|2|85 +1.3.6.1.4.1.9.9.524.1.1.20.0|2|6 +1.3.6.1.4.1.9.9.524.1.1.21.0|66|0 +1.3.6.1.4.1.9.9.524.1.1.22.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.1.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.2.0|66|75 +1.3.6.1.4.1.9.9.524.1.2.3.0|66|6 +1.3.6.1.4.1.9.9.524.1.2.4.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.5.0|66|5 +1.3.6.1.4.1.9.9.524.1.2.6.0|66|0 +1.3.6.1.4.1.9.9.524.1.2.8.0|2|1 +1.3.6.1.4.1.9.9.524.1.2.9.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.10.0|2|6 +1.3.6.1.4.1.9.9.524.1.2.13.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.14.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.15.0|2|2 +1.3.6.1.4.1.9.9.524.1.2.16.0|66|0 +1.3.6.1.4.1.9.9.524.1.2.17.0|2|5 +1.3.6.1.4.1.9.9.524.1.2.18.0|2|75 +1.3.6.1.4.1.9.9.524.1.2.19.0|2|85 +1.3.6.1.4.1.9.9.524.1.2.20.0|2|6 +1.3.6.1.4.1.9.9.524.1.2.21.0|66|0 +1.3.6.1.4.1.9.9.524.1.2.22.0|2|2 +1.3.6.1.4.1.9.9.524.1.16.1.1.1.1|2|1 +1.3.6.1.4.1.9.9.524.1.16.1.1.1.2|2|1 +1.3.6.1.4.1.9.9.524.1.16.1.1.2.1|2|2 +1.3.6.1.4.1.9.9.524.1.16.1.1.2.2|2|2 +1.3.6.1.4.1.9.9.524.1.16.1.1.3.1|2|2 +1.3.6.1.4.1.9.9.524.1.16.1.1.3.2|2|2 +1.3.6.1.4.1.9.9.524.1.16.1.1.4.1|66|5 +1.3.6.1.4.1.9.9.524.1.16.1.1.4.2|66|5 +1.3.6.1.4.1.9.9.524.1.16.6.1.2.0|2|1 +1.3.6.1.4.1.9.9.524.1.16.6.1.3.0|4x|64656661756c742d6174662d706f6c696379 +1.3.6.1.4.1.9.9.524.1.16.6.1.4.0|66|10 +1.3.6.1.4.1.9.9.524.1.16.6.1.5.0|2|0 +1.3.6.1.4.1.9.9.524.1.21.1.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.2.0|66|75 +1.3.6.1.4.1.9.9.524.1.21.3.0|66|6 +1.3.6.1.4.1.9.9.524.1.21.4.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.5.0|66|5 +1.3.6.1.4.1.9.9.524.1.21.6.0|66|0 +1.3.6.1.4.1.9.9.524.1.21.7.0|2|6 +1.3.6.1.4.1.9.9.524.1.21.8.0|2|1 +1.3.6.1.4.1.9.9.524.1.21.9.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.10.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.11.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.12.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.13.0|2|2 +1.3.6.1.4.1.9.9.524.1.21.14.0|66|0 +1.3.6.1.4.1.9.9.524.1.21.15.0|2|85 +1.3.6.1.4.1.9.9.524.1.21.16.0|2|6 +1.3.6.1.4.1.9.9.524.1.21.17.0|66|0 +1.3.6.1.4.1.9.9.524.1.22.1.1.0|66|1300 +1.3.6.1.4.1.9.9.524.1.22.1.2.0|66|500 +1.3.6.1.4.1.9.9.524.1.22.1.3.0|66|85 +1.3.6.1.4.1.9.9.524.1.22.1.4.0|66|75 +1.3.6.1.4.1.9.9.524.1.22.1.5.0|66|90 +1.3.6.1.4.1.9.9.524.1.22.1.6.0|66|400 +1.3.6.1.4.1.9.9.524.1.23.1.1.0|66|0 +1.3.6.1.4.1.9.9.524.1.23.1.2.0|66|0 +1.3.6.1.4.1.9.9.524.1.23.1.3.0|66|0 +1.3.6.1.4.1.9.9.533.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.1.3.1.18|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.2.3.1.34|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.3.3.1.50|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.4.3.1.66|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.5.3.1.82|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.6.1.4.0.0.0.6.3.1.98|2|1 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.1.3.1.18|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.2.3.1.34|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.3.3.1.50|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.4.3.1.66|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.5.3.1.82|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.7.1.4.0.0.0.6.3.1.98|2|2 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.1.3.1.18|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.2.3.1.34|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.3.3.1.50|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.4.3.1.66|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.5.3.1.82|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.8.1.4.0.0.0.6.3.1.98|6|1.3.6.1.4.1.9.9.166.1.6.1.1.1.24993452 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.1.3.1.18|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.18 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.2.3.1.34|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.34 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.3.3.1.50|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.50 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.4.3.1.66|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.66 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.5.3.1.82|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.82 +1.3.6.1.4.1.9.9.533.1.1.2.1.9.1.4.0.0.0.6.3.1.98|6|1.3.6.1.4.1.9.9.166.1.1.1.1.2.98 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.1.3.1.18|67|2791 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.2.3.1.34|67|2791 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.3.3.1.50|67|2791 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.4.3.1.66|67|2791 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.5.3.1.82|67|2792 +1.3.6.1.4.1.9.9.533.1.1.2.1.10.1.4.0.0.0.6.3.1.98|67|2792 +1.3.6.1.4.1.9.9.533.1.1.3.0|67|2792 +1.3.6.1.4.1.9.9.576.1.8.6.0|66|3 +1.3.6.1.4.1.9.9.576.1.8.7.0|66|10 +1.3.6.1.4.1.9.9.576.1.8.8.0|66|48 +1.3.6.1.4.1.9.9.576.1.8.12.0|2|1 +1.3.6.1.4.1.9.9.576.1.8.13.0|4x|00000000 +1.3.6.1.4.1.9.9.576.1.8.14.0|4|default +1.3.6.1.4.1.9.9.576.1.8.19.0|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.1.6.0|2|1 +1.3.6.1.4.1.9.9.599.1.1.7.0|2|75 +1.3.6.1.4.1.9.9.599.1.1.8.0|2|5 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.2.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.205.248|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.206.46|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.207.26|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.207.214|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.208.88|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.209.96|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.12.35.105.15.209.166|4x|5341505f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.32.121.24.187.247.226|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.80.2.145.214.19.243|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.80.2.145.214.20.216|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.80.2.145.214.26.19|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.80.166.216.175.120.254|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.106.196.41.62.181.65|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.116.58.244.35.33.112|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.118.79.23.49.17.236|4x|4e41495f5450455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.126.34.215.68.128.45|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.140.248.197.1.94.110|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.140.248.197.172.142.231|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.144.15.12.69.125.29|4x|4e41495f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.112.242|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.11|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.25|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.30|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.66|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.83|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.107|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.153|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.162|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.183|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.200|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.152.170.252.36.113.243|4x|4f544e5f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.162.189.249.20.165.252|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.184.138.96.123.224.118|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.196.147|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.197.57|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.197.69|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.197.76|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.202.212|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.188.221.194.36.203.205|4x|54494d455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.202.79.81.64.136.236|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.3.222.213.61.11.103.183|4x|4e41495f4d4f42494c455f574c414e +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.4.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.205.248|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.206.46|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.207.26|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.207.214|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.208.88|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.209.96|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.12.35.105.15.209.166|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.32.121.24.187.247.226|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.80.2.145.214.19.243|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.80.2.145.214.20.216|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.80.2.145.214.26.19|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.80.166.216.175.120.254|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.106.196.41.62.181.65|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.116.58.244.35.33.112|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.118.79.23.49.17.236|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.126.34.215.68.128.45|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.140.248.197.1.94.110|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.140.248.197.172.142.231|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.144.15.12.69.125.29|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.112.242|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.11|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.25|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.30|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.66|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.83|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.107|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.153|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.162|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.183|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.200|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.152.170.252.36.113.243|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.162.189.249.20.165.252|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.184.138.96.123.224.118|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.196.147|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.197.57|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.197.69|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.197.76|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.202.212|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.188.221.194.36.203.205|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.202.79.81.64.136.236|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.5.222.213.61.11.103.183|4x|000000000000 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.205.248|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.206.46|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.207.26|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.207.214|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.208.88|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.209.96|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.12.35.105.15.209.166|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.32.121.24.187.247.226|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.80.2.145.214.19.243|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.80.2.145.214.20.216|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.80.166.216.175.120.254|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.106.196.41.62.181.65|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.116.58.244.35.33.112|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.118.79.23.49.17.236|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.126.34.215.68.128.45|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.140.248.197.1.94.110|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.140.248.197.172.142.231|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.144.15.12.69.125.29|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.112.242|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.11|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.25|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.30|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.66|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.83|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.107|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.153|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.162|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.183|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.200|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.152.170.252.36.113.243|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.162.189.249.20.165.252|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.184.138.96.123.224.118|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.196.147|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.197.57|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.197.69|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.197.76|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.202.212|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.188.221.194.36.203.205|2|6 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.202.79.81.64.136.236|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.6.222.213.61.11.103.183|2|10 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.205.248|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.206.46|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.207.26|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.207.214|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.208.88|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.209.96|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.12.35.105.15.209.166|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.32.121.24.187.247.226|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.80.2.145.214.19.243|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.80.2.145.214.20.216|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.80.2.145.214.26.19|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.80.166.216.175.120.254|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.106.196.41.62.181.65|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.116.58.244.35.33.112|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.118.79.23.49.17.236|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.126.34.215.68.128.45|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.140.248.197.1.94.110|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.140.248.197.172.142.231|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.144.15.12.69.125.29|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.112.242|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.11|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.25|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.30|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.66|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.83|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.107|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.153|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.162|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.183|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.200|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.152.170.252.36.113.243|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.162.189.249.20.165.252|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.184.138.96.123.224.118|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.196.147|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.197.57|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.197.69|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.197.76|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.202.212|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.188.221.194.36.203.205|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.202.79.81.64.136.236|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.7.222.213.61.11.103.183|2|4 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.205.248|4x|087b87141b1c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.206.46|4x|70695a219d84 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.207.26|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.207.214|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.208.88|4x|087b87141b1c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.209.96|4x|70708b0c71a6 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.12.35.105.15.209.166|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.32.121.24.187.247.226|4x|005d7318dc6c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.80.2.145.214.19.243|4x|588b1c016c50 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.80.2.145.214.20.216|4x|588b1c01cee8 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.80.2.145.214.26.19|4x|00be75cffd06 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.80.166.216.175.120.254|4x|003c10680d20 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.106.196.41.62.181.65|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.116.58.244.35.33.112|4x|003c10680cd0 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.118.79.23.49.17.236|4x|488b0a0f5228 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.126.34.215.68.128.45|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.140.248.197.1.94.110|4x|003c10680cd0 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.140.248.197.172.142.231|4x|003c10680cd0 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.144.15.12.69.125.29|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.112.242|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.11|4x|588b1c019a88 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.25|4x|588b1c019a88 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.30|4x|588b1c016b0c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.66|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.83|4x|0845d131e666 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.107|4x|588b1c01cee8 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.153|4x|0845d131e666 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.162|4x|588b1c016c50 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.183|4x|588b1c01b4ac +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.200|4x|1cd1e0ae0e08 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.152.170.252.36.113.243|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.162.189.249.20.165.252|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.184.138.96.123.224.118|4x|005d7318dc6c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.196.147|4x|0845d131e6e6 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.197.57|4x|488b0a0f5228 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.197.69|4x|e4a41cadfd48 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.197.76|4x|00df1d2a32a8 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.202.212|4x|488b0a0f5228 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.188.221.194.36.203.205|4x|588b1c01cee8 +1.3.6.1.4.1.9.9.599.1.3.1.1.8.202.79.81.64.136.236|4x|0845d131e67c +1.3.6.1.4.1.9.9.599.1.3.1.1.8.222.213.61.11.103.183|4x|00be75cffd06 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.9.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.11.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.205.248|67|1725292593 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.206.46|67|1725292579 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.207.26|67|1725291383 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.207.214|67|1725292226 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.208.88|67|1725292513 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.209.96|67|1725292996 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.12.35.105.15.209.166|67|1725292863 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.32.121.24.187.247.226|67|1725292199 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.80.2.145.214.19.243|67|1725296469 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.80.2.145.214.20.216|67|1725312461 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.80.2.145.214.26.19|67|1725312463 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.80.166.216.175.120.254|67|1725354565 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.106.196.41.62.181.65|67|1725291334 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.116.58.244.35.33.112|67|1725350861 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.118.79.23.49.17.236|67|1725292028 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.126.34.215.68.128.45|67|1725292762 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.140.248.197.1.94.110|67|1725333754 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.140.248.197.172.142.231|67|1725345045 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.144.15.12.69.125.29|67|1725292812 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.112.242|67|1725292304 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.11|67|1725293007 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.25|67|1725291540 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.30|67|1725292680 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.66|67|1725292465 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.83|67|1725292302 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.107|67|1725292494 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.153|67|1725292276 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.162|67|1725292664 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.183|67|1725292346 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.200|67|1725291993 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.152.170.252.36.113.243|67|1725292359 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.162.189.249.20.165.252|67|1725291919 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.184.138.96.123.224.118|67|1725292400 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.196.147|67|1725300322 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.197.57|67|1725300321 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.197.69|67|1725299202 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.197.76|67|1725291378 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.202.212|67|1725292847 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.188.221.194.36.203.205|67|1725292851 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.202.79.81.64.136.236|67|1725292097 +1.3.6.1.4.1.9.9.599.1.3.1.1.14.222.213.61.11.103.183|67|1725291700 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.205.248|2|191 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.206.46|2|525 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.207.26|2|1721 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.207.214|2|877 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.208.88|2|241 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.209.96|2|108 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.12.35.105.15.209.166|2|248 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.32.121.24.187.247.226|2|904 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.80.2.145.214.19.243|2|23634 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.80.2.145.214.20.216|2|7642 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.80.2.145.214.26.19|2|7640 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.80.166.216.175.120.254|2|1738 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.106.196.41.62.181.65|2|1769 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.116.58.244.35.33.112|2|590 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.118.79.23.49.17.236|2|1076 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.126.34.215.68.128.45|2|341 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.140.248.197.1.94.110|2|15146 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.140.248.197.172.142.231|2|15313 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.144.15.12.69.125.29|2|1136 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.112.242|2|800 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.11|2|96 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.25|2|1563 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.30|2|423 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.66|2|638 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.83|2|803 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.107|2|609 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.153|2|828 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.162|2|440 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.183|2|758 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.200|2|1110 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.152.170.252.36.113.243|2|749 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.162.189.249.20.165.252|2|1184 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.184.138.96.123.224.118|2|703 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.196.147|2|19774 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.197.57|2|19782 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.197.69|2|20901 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.197.76|2|28725 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.202.212|2|27250 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.188.221.194.36.203.205|2|27246 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.202.79.81.64.136.236|2|1006 +1.3.6.1.4.1.9.9.599.1.3.1.1.15.222.213.61.11.103.183|2|1405 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.16.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.205.248|4|m4 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.206.46|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.207.26|4|m7 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.207.214|4x|6d3920737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.208.88|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.209.96|4|m3 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.12.35.105.15.209.166|4x|6d3320737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.32.121.24.187.247.226|4x|6d3920737332 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.80.2.145.214.19.243|4x|35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.80.2.145.214.20.216|4x|33362e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.80.2.145.214.26.19|4x|35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.80.166.216.175.120.254|4x|6d3620737332 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.106.196.41.62.181.65|4x|6d3920737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.116.58.244.35.33.112|4x|6d3920737332 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.118.79.23.49.17.236|4|m7 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.126.34.215.68.128.45|4x|31322e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.140.248.197.1.94.110|4x|362e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.140.248.197.172.142.231|4x|6d3920737332 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.144.15.12.69.125.29|4|m15 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.112.242|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.11|4x|6d3220737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.25|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.30|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.66|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.83|4x|6d3820737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.107|4x|6d3820737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.153|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.162|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.183|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.200|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.152.170.252.36.113.243|4|m0 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.162.189.249.20.165.252|4x|6d3920737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.184.138.96.123.224.118|4x|6d3920737332 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.196.147|4x|35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.197.57|4x|32342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.197.69|4x|34382e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.197.76|4x|35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.202.212|4x|34382e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.188.221.194.36.203.205|4x|34382e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.202.79.81.64.136.236|4x|6d3920737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.17.222.213.61.11.103.183|4x|6d3420737331 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.205.248|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.206.46|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.207.26|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.207.214|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.208.88|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.209.96|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.12.35.105.15.209.166|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.32.121.24.187.247.226|4x|362e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.80.2.145.214.19.243|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.80.2.145.214.20.216|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.80.2.145.214.26.19|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.80.166.216.175.120.254|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.106.196.41.62.181.65|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.116.58.244.35.33.112|4x|362e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.118.79.23.49.17.236|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.126.34.215.68.128.45|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.140.248.197.1.94.110|4x|362e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.140.248.197.172.142.231|4x|362e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.144.15.12.69.125.29|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.112.242|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.11|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.25|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.30|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.66|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.83|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.107|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.153|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.162|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.183|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.200|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.152.170.252.36.113.243|4x|31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.162.189.249.20.165.252|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.184.138.96.123.224.118|4x|362e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.196.147|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.197.57|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.197.69|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.197.76|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.202.212|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.188.221.194.36.203.205|4x|312e302c322e302c352e352c362e302c392e302c31312e302c31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.202.79.81.64.136.236|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.18.222.213.61.11.103.183|4x|31322e302c31382e302c32342e302c33362e302c34382e302c35342e30 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.19.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.20.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.21.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.205.248|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.206.46|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.207.26|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.207.214|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.208.88|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.209.96|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.12.35.105.15.209.166|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.80.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.80.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.80.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.118.79.23.49.17.236|4x|4e41495f5045524d49545f574954485f5245535452494354494f4e53 +1.3.6.1.4.1.9.9.599.1.3.1.1.22.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.144.15.12.69.125.29|4x|4953455f5045524d49545f414c4c +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.188.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.22.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.23.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.205.248|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.206.46|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.207.26|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.207.214|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.208.88|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.209.96|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.12.35.105.15.209.166|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.80.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.80.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.80.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.118.79.23.49.17.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.144.15.12.69.125.29|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.188.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.24.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.205.248|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.206.46|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.207.26|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.207.214|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.208.88|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.209.96|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.12.35.105.15.209.166|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.80.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.80.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.80.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.118.79.23.49.17.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.144.15.12.69.125.29|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.188.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.25.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.26.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.205.248|4|0c23690fcdf8 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.206.46|4|0c23690fce2e +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.207.26|4|0c23690fcf1a +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.207.214|4|0c23690fcfd6 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.208.88|4|0c23690fd058 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.209.96|4|0c23690fd160 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.12.35.105.15.209.166|4|0c23690fd1a6 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.80.2.145.214.19.243|4|500291d613f3 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.80.2.145.214.20.216|4|500291d614d8 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.80.2.145.214.26.19|4|500291d61a13 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.80.166.216.175.120.254|4|gsatienza +1.3.6.1.4.1.9.9.599.1.3.1.1.27.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.116.58.244.35.33.112|4x|534146492d5546435c5c4a4253616c696e6f67 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.118.79.23.49.17.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.140.248.197.1.94.110|4x|534146492d5546435c5c52564d6172636f73 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.140.248.197.172.142.231|4x|534146492d5546435c5c575142616c6167746173 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.144.15.12.69.125.29|4x|534146492d5546435c5c6667616e616c797374 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.196.147|4|bcddc224c493 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.197.57|4|bcddc224c539 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.197.69|4|bcddc224c545 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.197.76|4|bcddc224c54c +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.202.212|4|bcddc224cad4 +1.3.6.1.4.1.9.9.599.1.3.1.1.27.188.221.194.36.203.205|4|bcddc224cbcd +1.3.6.1.4.1.9.9.599.1.3.1.1.27.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.27.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.205.248|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.206.46|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.207.26|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.207.214|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.208.88|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.209.96|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.12.35.105.15.209.166|4|SAP +1.3.6.1.4.1.9.9.599.1.3.1.1.28.32.121.24.187.247.226|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.80.2.145.214.19.243|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.80.2.145.214.20.216|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.80.2.145.214.26.19|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.106.196.41.62.181.65|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.118.79.23.49.17.236|4x|4e41492d545045 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.126.34.215.68.128.45|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.144.15.12.69.125.29|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.112.242|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.11|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.25|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.30|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.66|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.83|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.107|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.153|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.162|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.183|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.200|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.152.170.252.36.113.243|4|OTN +1.3.6.1.4.1.9.9.599.1.3.1.1.28.162.189.249.20.165.252|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.184.138.96.123.224.118|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.196.147|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.197.57|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.197.69|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.197.76|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.202.212|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.188.221.194.36.203.205|4|TIME +1.3.6.1.4.1.9.9.599.1.3.1.1.28.202.79.81.64.136.236|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.28.222.213.61.11.103.183|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.33.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.34.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.205.248|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.206.46|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.207.26|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.207.214|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.208.88|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.209.96|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.12.35.105.15.209.166|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.80.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.80.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.80.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.118.79.23.49.17.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.144.15.12.69.125.29|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.188.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.51.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.599.1.3.1.1.52.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.205.248.1.4.10.183.183.81|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.205.248.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.205.248|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.206.46.1.4.10.183.183.78|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.206.46.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.206.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.207.26.1.4.10.183.183.62|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.207.26.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.207.26|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.207.214.1.4.10.183.183.80|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.207.214.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.207.214|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.208.88.1.4.10.183.183.75|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.208.88.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.208.88|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.209.96.1.4.10.183.183.61|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.209.96.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.209.96|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.209.166.1.4.10.183.183.79|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.12.35.105.15.209.166.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.209.166|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.32.121.24.187.247.226.1.4.10.183.72.64|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.32.121.24.187.247.226.2.16.254.128.0.0.0.0.0.0.185.167.77.160.15.206.63.213|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.80.2.145.214.19.243.1.4.10.183.191.21|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.80.2.145.214.20.216.1.4.10.183.191.13|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.80.2.145.214.26.19.1.4.10.183.191.18|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.80.166.216.175.120.254.1.4.10.183.178.160|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.80.166.216.175.120.254.2.16.254.128.0.0.0.0.0.0.20.202.219.49.157.245.152.192|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.106.196.41.62.181.65.1.4.10.183.72.25|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.106.196.41.62.181.65.2.16.254.128.0.0.0.0.0.0.104.196.41.255.254.62.181.65|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.116.58.244.35.33.112.1.4.10.183.177.101|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.116.58.244.35.33.112.2.16.254.128.0.0.0.0.0.0.202.88.17.158.29.250.153.57|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.118.79.23.49.17.236.1.4.10.183.205.27|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.118.79.23.49.17.236.2.16.254.128.0.0.0.0.0.0.116.79.23.255.254.49.17.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.126.34.215.68.128.45.1.4.10.183.72.28|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.126.34.215.68.128.45.2.16.254.128.0.0.0.0.0.0.124.34.215.255.254.68.128.45|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.140.248.197.1.94.110.1.4.10.183.177.103|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.140.248.197.1.94.110.2.16.254.128.0.0.0.0.0.0.81.66.40.66.229.78.200.140|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.140.248.197.172.142.231.1.4.10.183.177.102|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.140.248.197.172.142.231.2.16.254.128.0.0.0.0.0.0.192.200.182.4.178.104.112.46|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.144.15.12.69.125.29.1.4.10.183.205.154|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.144.15.12.69.125.29.2.16.254.128.0.0.0.0.0.0.165.47.243.194.154.27.27.123|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.112.242.1.4.10.183.193.186|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.112.242.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.112.242|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.11.1.4.10.183.193.106|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.11.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.11|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.25.1.4.10.183.193.171|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.25.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.25|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.30.1.4.10.183.193.176|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.30.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.30|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.66.1.4.10.183.193.88|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.66.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.66|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.83.1.4.10.183.193.204|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.83.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.83|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.107.1.4.10.183.193.223|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.107.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.107|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.153.1.4.10.183.193.33|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.153.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.153|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.162.1.4.10.183.193.89|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.162.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.162|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.183.1.4.10.183.193.36|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.183.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.200.1.4.10.183.193.181|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.200.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.200|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.243.1.4.10.183.193.164|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.152.170.252.36.113.243.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.243|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.162.189.249.20.165.252.1.4.10.183.72.27|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.162.189.249.20.165.252.2.16.254.128.0.0.0.0.0.0.160.189.249.255.254.20.165.252|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.184.138.96.123.224.118.1.4.10.183.72.87|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.184.138.96.123.224.118.2.16.254.128.0.0.0.0.0.0.211.122.17.49.174.137.31.206|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.196.147.1.4.10.183.191.34|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.197.57.1.4.10.183.191.17|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.197.69.1.4.10.183.191.16|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.197.76.1.4.10.183.191.15|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.202.212.1.4.10.183.191.11|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.188.221.194.36.203.205.1.4.10.183.191.14|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.202.79.81.64.136.236.1.4.10.183.72.26|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.202.79.81.64.136.236.2.16.254.128.0.0.0.0.0.0.200.79.81.255.254.64.136.236|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.222.213.61.11.103.183.1.4.10.183.72.30|2|3 +1.3.6.1.4.1.9.9.599.1.3.2.1.4.222.213.61.11.103.183.2.16.254.128.0.0.0.0.0.0.220.213.61.255.254.11.103.183|2|2 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.205.248.1.4.10.183.183.81|67|52200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.205.248.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.205.248|67|26400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.206.46.1.4.10.183.183.78|67|53700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.206.46.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.206.46|67|53700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.207.26.1.4.10.183.183.62|67|173300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.207.26.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.207.26|67|21400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.207.214.1.4.10.183.183.80|67|89000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.207.214.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.207.214|67|89000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.208.88.1.4.10.183.183.75|67|28700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.208.88.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.208.88|67|34600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.209.96.1.4.10.183.183.61|67|12000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.209.96.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.209.96|67|12000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.209.166.1.4.10.183.183.79|67|25300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.12.35.105.15.209.166.2.16.254.128.0.0.0.0.0.0.14.35.105.255.254.15.209.166|67|25800 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.32.121.24.187.247.226.1.4.10.183.72.64|67|91700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.32.121.24.187.247.226.2.16.254.128.0.0.0.0.0.0.185.167.77.160.15.206.63.213|67|91700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.80.2.145.214.19.243.1.4.10.183.191.21|67|2364700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.80.2.145.214.20.216.1.4.10.183.191.13|67|765500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.80.2.145.214.26.19.1.4.10.183.191.18|67|765300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.80.166.216.175.120.254.1.4.10.183.178.160|67|60700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.80.166.216.175.120.254.2.16.254.128.0.0.0.0.0.0.20.202.219.49.157.245.152.192|67|300600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.106.196.41.62.181.65.1.4.10.183.72.25|67|178200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.106.196.41.62.181.65.2.16.254.128.0.0.0.0.0.0.104.196.41.255.254.62.181.65|67|60900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.116.58.244.35.33.112.1.4.10.183.177.101|67|516500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.116.58.244.35.33.112.2.16.254.128.0.0.0.0.0.0.202.88.17.158.29.250.153.57|67|516500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.118.79.23.49.17.236.1.4.10.183.205.27|67|108800 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.118.79.23.49.17.236.2.16.254.128.0.0.0.0.0.0.116.79.23.255.254.49.17.236|67|80700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.126.34.215.68.128.45.1.4.10.183.72.28|67|35400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.126.34.215.68.128.45.2.16.254.128.0.0.0.0.0.0.124.34.215.255.254.68.128.45|67|35300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.140.248.197.1.94.110.1.4.10.183.177.103|67|2243900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.140.248.197.1.94.110.2.16.254.128.0.0.0.0.0.0.81.66.40.66.229.78.200.140|67|1326200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.140.248.197.172.142.231.1.4.10.183.177.102|67|2454400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.140.248.197.172.142.231.2.16.254.128.0.0.0.0.0.0.192.200.182.4.178.104.112.46|67|2454100 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.144.15.12.69.125.29.1.4.10.183.205.154|67|5072900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.144.15.12.69.125.29.2.16.254.128.0.0.0.0.0.0.165.47.243.194.154.27.27.123|67|5072800 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.112.242.1.4.10.183.193.186|67|81200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.112.242.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.112.242|67|80800 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.11.1.4.10.183.193.106|67|10900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.11.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.11|67|10900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.25.1.4.10.183.193.171|67|157600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.25.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.25|67|600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.30.1.4.10.183.193.176|67|43600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.30.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.30|67|40400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.66.1.4.10.183.193.88|67|65100 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.66.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.66|67|64600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.83.1.4.10.183.193.204|67|81400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.83.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.83|67|10700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.107.1.4.10.183.193.223|67|62200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.107.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.107|67|45700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.153.1.4.10.183.193.33|67|84000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.153.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.153|67|81000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.162.1.4.10.183.193.89|67|45200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.162.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.162|67|42500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.183.1.4.10.183.193.36|67|77000 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.183.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.183|67|74200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.200.1.4.10.183.193.181|67|112300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.200.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.200|67|29200 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.243.1.4.10.183.193.164|67|75700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.152.170.252.36.113.243.2.16.254.128.0.0.0.0.0.0.154.170.252.255.254.36.113.243|67|73100 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.162.189.249.20.165.252.1.4.10.183.72.27|67|119700 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.162.189.249.20.165.252.2.16.254.128.0.0.0.0.0.0.160.189.249.255.254.20.165.252|67|42300 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.184.138.96.123.224.118.1.4.10.183.72.87|67|71600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.184.138.96.123.224.118.2.16.254.128.0.0.0.0.0.0.211.122.17.49.174.137.31.206|67|71600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.196.147.1.4.10.183.191.34|67|1979400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.197.57.1.4.10.183.191.17|67|1979500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.197.69.1.4.10.183.191.16|67|2091400 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.197.76.1.4.10.183.191.15|67|2873800 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.202.212.1.4.10.183.191.11|67|2726900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.188.221.194.36.203.205.1.4.10.183.191.14|67|2726500 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.202.79.81.64.136.236.1.4.10.183.72.26|67|101900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.202.79.81.64.136.236.2.16.254.128.0.0.0.0.0.0.200.79.81.255.254.64.136.236|67|101900 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.222.213.61.11.103.183.1.4.10.183.72.30|67|141600 +1.3.6.1.4.1.9.9.599.1.3.2.1.5.222.213.61.11.103.183.2.16.254.128.0.0.0.0.0.0.220.213.61.255.254.11.103.183|67|141700 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.205.248|70|429 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.207.26|70|1 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.207.214|70|2 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.208.88|70|1418 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.209.96|70|2 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.12.35.105.15.209.166|70|19 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.32.121.24.187.247.226|70|4 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.80.166.216.175.120.254|70|475 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.106.196.41.62.181.65|70|30 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.116.58.244.35.33.112|70|172204 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.118.79.23.49.17.236|70|400 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.126.34.215.68.128.45|70|8261 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.140.248.197.1.94.110|70|15521 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.140.248.197.172.142.231|70|200467 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.144.15.12.69.125.29|70|409358 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.112.242|70|105 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.30|70|1 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.66|70|86 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.83|70|15 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.153|70|16 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.162|70|11 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.183|70|11 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.152.170.252.36.113.243|70|169 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.162.189.249.20.165.252|70|2145 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.184.138.96.123.224.118|70|74 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.196.147|70|74 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.197.57|70|290 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.197.69|70|3 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.202.212|70|833 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.202.79.81.64.136.236|70|4534 +1.3.6.1.4.1.9.9.599.1.4.1.1.1.222.213.61.11.103.183|70|22613 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.2.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.3.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.144.15.12.69.125.29|70|2 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.4.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.5.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.9.9.599.1.4.1.1.6.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.9.9.610.1.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.1.2.0|66|30 +1.3.6.1.4.1.9.9.610.1.1.1.3.0|2|-80 +1.3.6.1.4.1.9.9.610.1.1.1.4.0|66|300 +1.3.6.1.4.1.9.9.610.1.1.1.5.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.1.6.0|2|2 +1.3.6.1.4.1.9.9.610.1.1.1.7.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.1.8.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.1.9.0|66|3600 +1.3.6.1.4.1.9.9.610.1.1.1.10.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.1.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.2.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.3.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.4.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.5.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.6.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.5.7.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.6.1.1.2.136.144.141.52.194.134|2|3 +1.3.6.1.4.1.9.9.610.1.1.6.1.1.3.136.144.141.52.194.134|2|2 +1.3.6.1.4.1.9.9.610.1.1.6.1.1.4.136.144.141.52.194.134|2|3 +1.3.6.1.4.1.9.9.610.1.1.6.1.1.5.136.144.141.52.194.134|2|1 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.0.25.190.163.231.194|4x|0019bea3e7c2 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.0.103.98.11.175.24|4x|0067620baf18 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.2.25.190.163.231.194|4x|0219bea3e7c2 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.60.132.106.136.204.30|4x|3c846a88cc1e +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.60.132.106.159.175.130|4x|3c846a9faf82 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.68.209.250.117.93.125|4x|44d1fa755d7d +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.82.2.145.214.19.243|4x|520291d613f3 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.82.2.145.214.20.216|4x|520291d614d8 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.82.2.145.214.26.19|4x|520291d61a13 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.96.34.50.251.52.98|4x|602232fb3462 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.96.34.50.251.52.99|4x|602232fb3463 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.155.52.98|4x|6222329b3462 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.155.52.99|4x|6222329b3463 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.171.52.98|4x|622232ab3462 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.171.52.99|4x|622232ab3463 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.187.52.99|4x|622232bb3463 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.98.34.50.203.52.99|4x|622232cb3463 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.102.44.15.210.58.113|4x|662c0fd23a71 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.122.119.115.35.143.187|4x|7a7773238fbb +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.122.119.115.51.143.187|4x|7a7773338fbb +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.122.119.115.67.143.187|4x|7a7773438fbb +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.122.119.115.83.143.187|4x|7a7773538fbb +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.122.119.115.99.143.187|4x|7a7773638fbb +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.130.193.240.80.231.55|4x|82c1f050e737 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.144.154.74.221.235.3|4x|909a4addeb03 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.144.154.74.221.235.5|4x|909a4addeb05 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.146.174.227.208.52.43|4x|92aee3d0342b +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.196.147|4x|beddc224c493 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.197.57|4x|beddc224c539 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.197.69|4x|beddc224c545 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.197.76|4x|beddc224c54c +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.202.212|4x|beddc224cad4 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.190.221.194.36.203.205|4x|beddc224cbcd +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.224.212.98.102.160.80|4x|e0d46266a050 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.224.225.169.118.154.63|4x|e0e1a9769a3f +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.244.45.6.162.185.70|4x|f42d06a2b946 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.1.244.111.237.139.122.192|4x|f46fed8b7ac0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.0.25.190.163.231.194|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.0.103.98.11.175.24|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.2.25.190.163.231.194|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.60.132.106.136.204.30|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.60.132.106.159.175.130|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.68.209.250.117.93.125|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.82.2.145.214.19.243|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.82.2.145.214.20.216|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.82.2.145.214.26.19|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.96.34.50.251.52.98|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.96.34.50.251.52.99|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.155.52.98|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.155.52.99|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.171.52.98|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.171.52.99|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.187.52.99|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.98.34.50.203.52.99|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.102.44.15.210.58.113|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.122.119.115.35.143.187|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.122.119.115.51.143.187|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.122.119.115.67.143.187|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.122.119.115.83.143.187|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.122.119.115.99.143.187|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.130.193.240.80.231.55|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.144.154.74.221.235.3|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.144.154.74.221.235.5|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.146.174.227.208.52.43|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.196.147|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.197.57|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.197.69|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.197.76|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.202.212|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.190.221.194.36.203.205|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.224.212.98.102.160.80|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.224.225.169.118.154.63|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.244.45.6.162.185.70|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.2.244.111.237.139.122.192|66|0 +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.0.25.190.163.231.194|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.0.103.98.11.175.24|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.2.25.190.163.231.194|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.60.132.106.136.204.30|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.60.132.106.159.175.130|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.68.209.250.117.93.125|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.82.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.82.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.82.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.96.34.50.251.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.96.34.50.251.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.155.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.155.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.171.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.171.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.187.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.98.34.50.203.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.102.44.15.210.58.113|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.122.119.115.35.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.122.119.115.51.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.122.119.115.67.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.122.119.115.83.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.122.119.115.99.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.130.193.240.80.231.55|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.144.154.74.221.235.3|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.144.154.74.221.235.5|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.146.174.227.208.52.43|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.190.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.224.212.98.102.160.80|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.224.225.169.118.154.63|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.244.45.6.162.185.70|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.3.244.111.237.139.122.192|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.0.25.190.163.231.194|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.0.103.98.11.175.24|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.2.25.190.163.231.194|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.60.132.106.136.204.30|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.60.132.106.159.175.130|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.68.209.250.117.93.125|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.82.2.145.214.19.243|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.82.2.145.214.20.216|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.82.2.145.214.26.19|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.96.34.50.251.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.96.34.50.251.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.155.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.155.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.171.52.98|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.171.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.187.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.98.34.50.203.52.99|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.102.44.15.210.58.113|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.122.119.115.35.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.122.119.115.51.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.122.119.115.67.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.122.119.115.83.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.122.119.115.99.143.187|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.130.193.240.80.231.55|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.144.154.74.221.235.3|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.144.154.74.221.235.5|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.146.174.227.208.52.43|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.196.147|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.197.57|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.197.69|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.197.76|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.202.212|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.190.221.194.36.203.205|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.224.212.98.102.160.80|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.224.225.169.118.154.63|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.244.45.6.162.185.70|4| +1.3.6.1.4.1.9.9.610.1.1.6.2.1.4.244.111.237.139.122.192|4| +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.0.25.190.163.215.50|4x|0019bea3e7c2 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.24.239.58.51.23.218|4x|ffffffffffff +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.46.20.14.75.185.108|4x|909a4addeb03 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.62.240.156.87.248.163|4x|d476a0a4ddc2 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.64.176.118.144.45.13|4x|d476a0a4ddc2 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.78.225.190.186.202.133|4x|f46fed8b7ac0 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.86.71.181.209.89.119|4x|00e2691c318c +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.208.194.78.18.208.160|4x|d476a0a4ddc2 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.210.200.94.109.244.160|4x|602232fb3462 +1.3.6.1.4.1.9.9.610.1.1.7.1.1.2.242.117.185.62.239.105|4x|f42d06a2b946 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.164.0.17|4x|087b871da400 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.205.32.17|4x|087b871dcd20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.24.249.53.103.175.0.17|4x|18f93567af00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.24.249.53.225.42.224.17|4x|18f935e12ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.88.139.28.8.178.160.17|4x|588b1c08b2a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.25.190.163.231.194.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.29.205.32.17|4x|087b871dcd20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.24.249.53.103.175.0.17|4x|18f93567af00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.24.249.53.225.42.224.17|4x|18f935e12ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.88.139.28.8.178.160.17|4x|588b1c08b2a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.2.25.190.163.231.194.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.60.132.106.136.204.30.8.123.135.28.170.96.17|4x|087b871caa60 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.60.132.106.159.175.130.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|588b1c066fc0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|18f935668660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|588b1c086500 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.96.34.50.251.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.187.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.203.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.98.34.50.203.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.67.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.0.60.16.104.153.160.1|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.83.143.187.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.122.119.115.99.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.130.193.240.80.231.55.24.249.53.225.4.192.17|4x|18f935e104c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.144.154.74.221.235.5.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|588b1c0fe680 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|588b1cb87440 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|00df1d2af640 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|588b1cb83620 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|588b1c0665a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|588b1c066fc0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|18f935e104c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|28ac9e3d38c0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|28ac9e4c8b20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.45.6.162.185.70.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.45.6.162.185.70.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.1.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.164.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.205.32.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.24.249.53.103.175.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.24.249.53.225.42.224.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.88.139.28.8.178.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.103.98.11.175.24.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.103.98.11.175.24.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.103.98.11.175.24.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.103.98.11.175.24.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.0.103.98.11.175.24.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.29.205.32.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.24.249.53.103.175.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.24.249.53.225.42.224.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.88.139.28.8.178.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.2.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.60.132.106.136.204.30.8.123.135.28.170.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.60.132.106.159.175.130.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.68.209.250.117.93.125.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.68.209.250.117.93.125.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.19.243.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.19.243.88.139.28.6.111.192.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.24.249.53.102.134.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.88.139.28.8.101.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.20.216.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.26.19.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.26.19.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.82.2.145.214.26.19.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.96.34.50.251.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.155.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.171.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.187.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.203.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.98.34.50.203.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.102.44.15.210.58.113.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.35.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.51.143.187.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.67.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.0.60.16.104.153.160.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.83.143.187.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.122.119.115.99.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.130.193.240.80.231.55.24.249.53.225.4.192.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.144.154.74.221.235.3.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.144.154.74.221.235.5.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.146.174.227.208.52.43.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.196.147.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.88.139.28.15.230.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.88.139.28.184.116.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.57.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.69.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.197.76.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.88.139.28.184.54.32.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.202.212.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.88.139.28.6.101.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.88.139.28.6.111.192.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.190.221.194.36.203.205.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.212.98.102.160.80.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.24.249.53.225.4.192.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.224.225.169.118.154.63.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.45.6.162.185.70.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.45.6.162.185.70.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.2.244.111.237.139.122.192.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.164.0.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.205.32.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.24.249.53.103.175.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.24.249.53.225.42.224.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.40.172.158.59.119.32.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.88.139.28.8.178.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.25.190.163.231.194.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.103.98.11.175.24.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.103.98.11.175.24.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.103.98.11.175.24.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.103.98.11.175.24.36.54.218.80.103.64.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.0.103.98.11.175.24.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.29.205.32.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.24.249.53.103.175.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.24.249.53.225.42.224.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.40.172.158.59.119.32.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.88.139.28.8.178.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.2.25.190.163.231.194.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.60.132.106.136.204.30.8.123.135.28.170.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.60.132.106.159.175.130.40.172.158.56.69.96.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.68.209.250.117.93.125.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.68.209.250.117.93.125.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.19.243.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.19.243.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.24.249.53.102.134.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.88.139.28.8.101.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.20.216.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.26.19.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.26.19.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.82.2.145.214.26.19.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.8.123.135.28.247.160.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.98.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.96.34.50.251.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.98.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.155.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.171.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.187.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.203.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.98.34.50.203.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.102.44.15.210.58.113.8.123.135.28.247.160.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.35.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.0.60.16.104.154.224.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.8.69.209.213.189.0.0|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.28.209.224.174.126.128.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.36.54.218.80.109.224.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.51.143.187.40.172.158.77.225.160.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.8.123.135.29.230.96.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.67.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.0.60.16.104.153.160.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.0.60.16.104.154.224.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.28.209.224.174.126.128.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.36.54.218.80.109.224.0|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.36.54.218.80.109.224.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.83.143.187.40.172.158.77.225.160.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.122.119.115.99.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.130.193.240.80.231.55.24.249.53.225.4.192.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.144.154.74.221.235.3.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.144.154.74.221.235.5.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.146.174.227.208.52.43.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.196.147.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.88.139.28.15.230.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.88.139.28.184.116.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.57.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.69.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.197.76.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.88.139.28.184.54.32.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.202.212.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.88.139.28.6.101.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.190.221.194.36.203.205.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.212.98.102.160.80.0.60.16.104.153.160.0|2|10 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.24.249.53.225.4.192.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.40.172.158.61.56.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.224.225.169.118.154.63.40.172.158.76.139.32.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.45.6.162.185.70.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.45.6.162.185.70.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.8.123.135.29.230.96.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.36.54.218.80.103.64.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.3.244.111.237.139.122.192.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.164.0.17|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.205.32.17|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.24.249.53.103.175.0.17|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.24.249.53.225.42.224.17|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.40.172.158.59.119.32.0|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.88.139.28.8.178.160.17|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.25.190.163.231.194.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.29.205.32.17|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.24.249.53.103.175.0.17|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.24.249.53.225.42.224.17|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.40.172.158.59.119.32.0|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.88.139.28.8.178.160.17|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.2.25.190.163.231.194.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.60.132.106.136.204.30.8.123.135.28.170.96.17|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.60.132.106.159.175.130.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.96.34.50.251.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.187.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.203.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.98.34.50.203.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.67.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.0.60.16.104.153.160.1|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.8.69.209.213.189.0.1|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.28.209.224.174.126.128.1|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.36.54.218.80.109.224.1|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.83.143.187.40.172.158.77.225.160.1|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.122.119.115.99.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.130.193.240.80.231.55.24.249.53.225.4.192.17|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.144.154.74.221.235.5.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.45.6.162.185.70.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.45.6.162.185.70.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.4.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.103.98.11.175.24.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.103.98.11.175.24.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.103.98.11.175.24.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.103.98.11.175.24.36.54.218.80.103.64.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.0.103.98.11.175.24.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.60.132.106.136.204.30.8.123.135.28.170.96.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.60.132.106.159.175.130.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.68.209.250.117.93.125.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.68.209.250.117.93.125.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.19.243.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.19.243.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.24.249.53.102.134.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.88.139.28.8.101.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.20.216.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.26.19.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.26.19.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.82.2.145.214.26.19.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.96.34.50.251.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.155.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.171.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.187.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.203.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.98.34.50.203.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.102.44.15.210.58.113.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.35.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.8.69.209.213.189.0.0|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.8.69.209.213.189.0.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.28.209.224.174.126.128.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.36.54.218.80.109.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.51.143.187.40.172.158.77.225.160.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.67.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.0.60.16.104.153.160.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.8.69.209.213.189.0.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.28.209.224.174.126.128.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.36.54.218.80.109.224.0|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.36.54.218.80.109.224.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.83.143.187.40.172.158.77.225.160.1|2|44 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.122.119.115.99.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.144.154.74.221.235.3.8.123.135.29.164.64.17|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.144.154.74.221.235.5.8.123.135.29.164.64.17|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.146.174.227.208.52.43.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.0.60.16.104.153.160.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.8.69.209.213.189.0.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.8.123.135.28.30.64.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.8.123.135.29.167.160.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.24.249.53.102.87.0.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.28.209.224.174.126.128.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.40.172.158.52.22.96.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.40.172.158.52.31.224.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.40.172.158.73.197.128.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.196.147.40.172.158.77.225.160.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.88.139.28.15.230.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.88.139.28.184.116.64.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.57.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.69.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.197.76.0.223.29.42.246.64.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.88.139.28.184.54.32.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.202.212.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.88.139.28.6.101.160.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.190.221.194.36.203.205.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.212.98.102.160.80.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.8.123.135.28.30.64.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.8.123.135.29.160.64.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.8.123.135.29.230.64.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.24.249.53.225.4.192.17|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.40.172.158.61.56.192.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.40.172.158.69.128.160.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.40.172.158.73.198.96.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.224.225.169.118.154.63.40.172.158.76.139.32.0|2|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.45.6.162.185.70.8.69.209.213.189.0.0|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.45.6.162.185.70.8.123.135.28.247.160.17|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.5.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.28.30.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.160.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.164.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.167.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.205.32.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.212.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.8.123.135.29.230.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.24.249.53.102.87.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.24.249.53.103.175.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.24.249.53.225.42.224.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.40.172.158.59.119.32.0|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.40.172.158.59.131.224.0|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.40.172.158.73.197.128.0|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.40.172.158.73.198.96.0|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.88.139.28.8.178.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.25.190.163.231.194.244.219.230.228.7.192.0|4|FSCNAMMAINAP +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|426d69726b5f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|426d69726b5f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|426d69726b5f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|426d69726b5f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|426d69726b5f31 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.0.60.16.104.154.224.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.28.247.160.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.29.160.64.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.29.167.160.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.29.205.32.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.29.212.160.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.8.123.135.29.230.64.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.24.249.53.102.87.0.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.24.249.53.103.175.0.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.24.249.53.225.42.224.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.40.172.158.59.119.32.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.40.172.158.59.131.224.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.40.172.158.73.197.128.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.40.172.158.73.198.96.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.88.139.28.8.178.160.17|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.2.25.190.163.231.194.244.219.230.228.7.192.0|4|TEST +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.60.132.106.136.204.30.8.123.135.28.170.96.17|4|samonte +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.60.132.106.159.175.130.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|454e532057692d46692041502032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|454e532057692d46692041502032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3039 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|4d6172696c616f5f436c6f636b5f3039 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.96.34.50.251.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|666c637365632d6170 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.187.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.203.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.98.34.50.203.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|7669766f2031393135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.67.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.0.60.16.104.153.160.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.83.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.122.119.115.99.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.130.193.240.80.231.55.24.249.53.225.4.192.17|4|MV84104853 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|54502d4c696e6b5f45423033 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.144.154.74.221.235.5.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|496e66696e697820484f5420333020504c4159 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|4d6172696c616f5f436c6f636b5f3034 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|4855415745492d313034305130 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.8.123.135.29.230.64.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.45.6.162.185.70.8.69.209.213.189.0.0|4|PLDTHOMEFIBRXP96n +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.45.6.162.185.70.8.123.135.28.247.160.17|4|PLDTHOMEFIBRXP96n +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.6.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|4d56492031 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.2.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.96.34.50.251.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.7.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.28.30.64.17|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.160.64.17|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.164.0.17|2|-67 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.167.160.17|2|-55 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.205.32.17|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.212.160.17|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.8.123.135.29.230.64.17|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.24.249.53.102.87.0.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.24.249.53.103.175.0.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.24.249.53.225.42.224.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.40.172.158.59.119.32.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.40.172.158.59.131.224.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.40.172.158.73.197.128.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.40.172.158.73.198.96.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.88.139.28.8.178.160.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.25.190.163.231.194.244.219.230.228.7.192.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.103.98.11.175.24.0.60.16.104.153.160.0|2|-55 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.103.98.11.175.24.8.123.135.29.164.64.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.103.98.11.175.24.28.209.224.174.126.128.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.103.98.11.175.24.36.54.218.80.103.64.0|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.0.103.98.11.175.24.40.172.158.77.225.160.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.0.60.16.104.154.224.0|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.28.247.160.17|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.29.160.64.17|2|-67 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.29.167.160.17|2|-56 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.29.205.32.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.29.212.160.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.8.123.135.29.230.64.17|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.24.249.53.102.87.0.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.24.249.53.103.175.0.17|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.24.249.53.225.42.224.17|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.40.172.158.59.119.32.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.40.172.158.59.131.224.0|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.40.172.158.73.197.128.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.40.172.158.73.198.96.0|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.88.139.28.8.178.160.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.2.25.190.163.231.194.244.219.230.228.7.192.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.60.132.106.136.204.30.8.123.135.28.170.96.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.60.132.106.159.175.130.40.172.158.56.69.96.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.68.209.250.117.93.125.0.60.16.104.154.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.68.209.250.117.93.125.40.172.158.52.22.96.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.19.243.40.172.158.59.131.224.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.19.243.88.139.28.6.111.192.17|2|-47 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.8.123.135.29.230.96.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.24.249.53.102.134.96.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.36.54.218.80.92.0.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.40.172.158.56.69.96.0|2|-62 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.40.172.158.59.131.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.40.172.158.61.47.192.0|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.88.139.28.8.101.0.17|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.88.139.28.9.132.128.17|2|-59 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.20.216.244.219.230.228.7.192.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.26.19.40.172.158.56.69.96.0|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.26.19.40.172.158.61.47.192.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.82.2.145.214.26.19.88.139.28.9.132.128.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.0.60.16.104.154.224.0|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.8.123.135.28.30.64.17|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.8.123.135.28.247.160.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.8.123.135.29.160.64.17|2|-72 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.40.172.158.52.22.96.0|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.40.172.158.69.128.160.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.40.172.158.73.197.128.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.98.40.172.158.77.225.160.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.99.0.60.16.104.154.224.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.96.34.50.251.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.0.60.16.104.154.224.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.8.123.135.28.30.64.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.8.123.135.28.247.160.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.8.123.135.29.160.64.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.40.172.158.52.22.96.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.40.172.158.69.128.160.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.40.172.158.73.197.128.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.98.40.172.158.77.225.160.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.155.52.99.0.60.16.104.154.224.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.0.60.16.104.154.224.0|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.8.123.135.28.247.160.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.8.123.135.29.160.64.17|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.40.172.158.52.22.96.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.40.172.158.69.128.160.0|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.98.40.172.158.73.197.128.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.99.0.60.16.104.154.224.1|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.171.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.187.52.99.0.60.16.104.154.224.1|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.203.52.99.0.60.16.104.154.224.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.98.34.50.203.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.102.44.15.210.58.113.8.123.135.28.247.160.17|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.0.60.16.104.153.160.0|2|-48 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.8.123.135.29.167.160.17|2|-64 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.28.209.224.174.126.128.0|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.36.54.218.80.109.224.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.35.143.187.40.172.158.77.225.160.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.0.60.16.104.154.224.1|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.8.69.209.213.189.0.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.8.69.209.213.189.0.1|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.28.209.224.174.126.128.1|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.36.54.218.80.109.224.1|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.51.143.187.40.172.158.77.225.160.1|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.0.60.16.104.153.160.0|2|-49 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.8.123.135.29.167.160.17|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.8.123.135.29.230.96.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.24.249.53.102.87.0.17|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.28.209.224.174.126.128.0|2|-72 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.36.54.218.80.109.224.0|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.67.143.187.40.172.158.77.225.160.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.0.60.16.104.153.160.1|2|-50 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.0.60.16.104.154.224.1|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.8.69.209.213.189.0.1|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.28.209.224.174.126.128.1|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.36.54.218.80.109.224.0|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.36.54.218.80.109.224.1|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.83.143.187.40.172.158.77.225.160.1|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.0.60.16.104.153.160.0|2|-50 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.8.69.209.213.189.0.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.8.123.135.29.167.160.17|2|-62 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.28.209.224.174.126.128.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.36.54.218.80.109.224.0|2|-72 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.122.119.115.99.143.187.40.172.158.77.225.160.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.130.193.240.80.231.55.24.249.53.225.4.192.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.144.154.74.221.235.3.8.123.135.29.164.64.17|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.144.154.74.221.235.5.8.123.135.29.164.64.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.146.174.227.208.52.43.8.123.135.29.164.64.17|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.0.60.16.104.153.160.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.8.69.209.213.189.0.0|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.8.123.135.28.30.64.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.8.123.135.29.167.160.17|2|-53 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.24.249.53.102.87.0.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.28.209.224.174.126.128.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.36.54.218.80.109.224.0|2|-56 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.40.172.158.52.22.96.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.40.172.158.52.31.224.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.40.172.158.73.197.128.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.196.147.40.172.158.77.225.160.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.0.60.16.104.153.160.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.8.69.209.213.189.0.0|2|-59 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.8.123.135.29.212.160.17|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.8.123.135.29.230.96.17|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.28.209.224.173.249.0.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.28.209.224.174.126.128.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.36.54.218.80.101.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.36.54.218.80.109.224.0|2|-59 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.40.172.158.52.31.224.0|2|-62 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.40.172.158.59.131.224.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.88.139.28.7.225.128.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.88.139.28.15.230.128.17|2|-64 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.88.139.28.184.116.64.17|2|-61 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.57.244.219.230.228.7.192.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.0.60.16.104.154.224.0|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.8.123.135.28.247.160.17|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.8.123.135.29.160.64.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.8.123.135.29.230.64.17|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.40.172.158.52.22.96.0|2|-61 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.40.172.158.69.128.160.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.40.172.158.73.197.128.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.69.40.172.158.77.225.160.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.197.76.0.223.29.42.246.64.0|2|-53 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.0.60.16.104.153.160.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.8.69.209.213.189.0.0|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.8.123.135.29.230.96.17|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.28.209.224.173.249.0.0|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.28.209.224.174.126.128.0|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.36.54.218.80.109.224.0|2|-62 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.40.172.158.52.31.224.0|2|-67 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.40.172.158.56.69.96.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.40.172.158.59.131.224.0|2|-64 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.40.172.158.77.225.160.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.88.139.28.7.225.128.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.88.139.28.184.54.32.17|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.202.212.244.219.230.228.7.192.0|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.0.60.16.104.153.160.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.8.69.209.213.189.0.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.8.123.135.29.230.96.17|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.36.54.218.80.92.0.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.36.54.218.80.101.224.0|2|-67 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.36.54.218.80.109.224.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.40.172.158.52.31.224.0|2|-68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.40.172.158.56.69.96.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.40.172.158.59.131.224.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.40.172.158.61.47.192.0|2|-76 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.88.139.28.6.101.160.17|2|-63 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.88.139.28.6.111.192.17|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.88.139.28.7.225.128.17|2|-69 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.88.139.28.9.132.128.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.190.221.194.36.203.205.244.219.230.228.7.192.0|2|-65 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.212.98.102.160.80.0.60.16.104.153.160.0|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.8.123.135.28.30.64.17|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.8.123.135.29.160.64.17|2|-61 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.8.123.135.29.230.64.17|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.24.249.53.225.4.192.17|2|-52 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.40.172.158.61.56.192.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.40.172.158.69.128.160.0|2|-75 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.40.172.158.73.198.96.0|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.224.225.169.118.154.63.40.172.158.76.139.32.0|2|-66 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.45.6.162.185.70.8.69.209.213.189.0.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.45.6.162.185.70.8.123.135.28.247.160.17|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.0.60.16.104.153.160.0|2|-78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.8.69.209.213.189.0.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.8.123.135.29.167.160.17|2|-71 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.8.123.135.29.230.96.17|2|-70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.24.249.53.102.87.0.17|2|-77 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.28.209.224.174.126.128.0|2|-73 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.36.54.218.80.103.64.0|2|-74 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.8.244.111.237.139.122.192.40.172.158.59.131.224.0|2|-79 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.2.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.83.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.9.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.164.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.205.32.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.24.249.53.103.175.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.24.249.53.225.42.224.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.88.139.28.8.178.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.103.98.11.175.24.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.103.98.11.175.24.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.103.98.11.175.24.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.103.98.11.175.24.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.0.103.98.11.175.24.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.29.205.32.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.24.249.53.103.175.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.24.249.53.225.42.224.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.88.139.28.8.178.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.2.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.60.132.106.136.204.30.8.123.135.28.170.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.60.132.106.159.175.130.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.68.209.250.117.93.125.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.68.209.250.117.93.125.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.19.243.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.19.243.88.139.28.6.111.192.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.24.249.53.102.134.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.88.139.28.8.101.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.20.216.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.26.19.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.26.19.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.82.2.145.214.26.19.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.96.34.50.251.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.155.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.171.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.187.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.203.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.98.34.50.203.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.102.44.15.210.58.113.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.35.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.51.143.187.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.67.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.83.143.187.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.122.119.115.99.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.130.193.240.80.231.55.24.249.53.225.4.192.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.144.154.74.221.235.3.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.144.154.74.221.235.5.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.146.174.227.208.52.43.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.196.147.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.88.139.28.15.230.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.88.139.28.184.116.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.57.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.69.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.197.76.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.88.139.28.184.54.32.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.202.212.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.88.139.28.6.101.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.88.139.28.6.111.192.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.190.221.194.36.203.205.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.212.98.102.160.80.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.24.249.53.225.4.192.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.224.225.169.118.154.63.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.45.6.162.185.70.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.45.6.162.185.70.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.10.244.111.237.139.122.192.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.164.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.205.32.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.24.249.53.103.175.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.24.249.53.225.42.224.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.40.172.158.59.119.32.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.88.139.28.8.178.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.25.190.163.231.194.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.103.98.11.175.24.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.103.98.11.175.24.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.103.98.11.175.24.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.103.98.11.175.24.36.54.218.80.103.64.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.0.103.98.11.175.24.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.29.205.32.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.24.249.53.103.175.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.24.249.53.225.42.224.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.40.172.158.59.119.32.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.88.139.28.8.178.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.2.25.190.163.231.194.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.60.132.106.136.204.30.8.123.135.28.170.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.60.132.106.159.175.130.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.68.209.250.117.93.125.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.68.209.250.117.93.125.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.19.243.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.19.243.88.139.28.6.111.192.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.24.249.53.102.134.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.36.54.218.80.92.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.88.139.28.8.101.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.20.216.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.26.19.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.26.19.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.82.2.145.214.26.19.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.96.34.50.251.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.155.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.171.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.187.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.203.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.98.34.50.203.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.102.44.15.210.58.113.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.35.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.51.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.67.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.0.60.16.104.153.160.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.83.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.122.119.115.99.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.130.193.240.80.231.55.24.249.53.225.4.192.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.144.154.74.221.235.3.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.144.154.74.221.235.5.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.146.174.227.208.52.43.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.196.147.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.28.209.224.173.249.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.36.54.218.80.101.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.88.139.28.15.230.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.88.139.28.184.116.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.57.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.69.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.197.76.0.223.29.42.246.64.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.28.209.224.173.249.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.88.139.28.184.54.32.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.202.212.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.36.54.218.80.92.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.36.54.218.80.101.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.88.139.28.6.101.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.88.139.28.6.111.192.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.190.221.194.36.203.205.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.212.98.102.160.80.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.24.249.53.225.4.192.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.40.172.158.61.56.192.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.224.225.169.118.154.63.40.172.158.76.139.32.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.45.6.162.185.70.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.45.6.162.185.70.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.36.54.218.80.103.64.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.11.244.111.237.139.122.192.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.28.30.64.17|65|40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.160.64.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.164.0.17|65|70 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.167.160.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.205.32.17|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.212.160.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.8.123.135.29.230.64.17|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.24.249.53.102.87.0.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.24.249.53.103.175.0.17|65|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.24.249.53.225.42.224.17|65|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.40.172.158.59.119.32.0|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.40.172.158.59.131.224.0|65|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.40.172.158.73.197.128.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.40.172.158.73.198.96.0|65|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.88.139.28.8.178.160.17|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.25.190.163.231.194.244.219.230.228.7.192.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.103.98.11.175.24.0.60.16.104.153.160.0|65|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.103.98.11.175.24.8.123.135.29.164.64.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.103.98.11.175.24.28.209.224.174.126.128.0|65|503 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.103.98.11.175.24.36.54.218.80.103.64.0|65|131 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.0.103.98.11.175.24.40.172.158.77.225.160.0|65|647 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.0.60.16.104.154.224.0|65|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.28.247.160.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.29.160.64.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.29.167.160.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.29.205.32.17|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.29.212.160.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.8.123.135.29.230.64.17|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.24.249.53.102.87.0.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.24.249.53.103.175.0.17|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.24.249.53.225.42.224.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.40.172.158.59.119.32.0|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.40.172.158.59.131.224.0|65|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.40.172.158.73.197.128.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.40.172.158.73.198.96.0|65|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.88.139.28.8.178.160.17|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.2.25.190.163.231.194.244.219.230.228.7.192.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.60.132.106.136.204.30.8.123.135.28.170.96.17|65|187 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.60.132.106.159.175.130.40.172.158.56.69.96.0|65|184 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.68.209.250.117.93.125.0.60.16.104.154.224.0|65|112 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.68.209.250.117.93.125.40.172.158.52.22.96.0|65|1002 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.19.243.40.172.158.59.131.224.0|65|93 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.19.243.88.139.28.6.111.192.17|65|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.8.69.209.213.189.0.0|65|10 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.8.123.135.29.230.96.17|65|607 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.24.249.53.102.134.96.17|65|289 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.36.54.218.80.92.0.0|65|102 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.40.172.158.52.31.224.0|65|453 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.40.172.158.56.69.96.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.40.172.158.59.131.224.0|65|93 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.40.172.158.61.47.192.0|65|96 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.88.139.28.8.101.0.17|65|210 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.88.139.28.9.132.128.17|65|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.20.216.244.219.230.228.7.192.0|65|94 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.26.19.40.172.158.56.69.96.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.26.19.40.172.158.61.47.192.0|65|126 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.82.2.145.214.26.19.88.139.28.9.132.128.17|65|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.0.60.16.104.154.224.0|65|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.8.123.135.28.30.64.17|65|280 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.8.123.135.28.247.160.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.8.123.135.29.160.64.17|65|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.40.172.158.52.22.96.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.40.172.158.69.128.160.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.40.172.158.73.197.128.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.98.40.172.158.77.225.160.0|65|197 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.99.0.60.16.104.154.224.1|65|354 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.96.34.50.251.52.99.40.172.158.52.22.96.1|65|612 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.0.60.16.104.154.224.0|65|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.8.123.135.28.30.64.17|65|280 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.8.123.135.28.247.160.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.8.123.135.29.160.64.17|65|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.40.172.158.52.22.96.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.40.172.158.69.128.160.0|65|342 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.40.172.158.73.197.128.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.98.40.172.158.77.225.160.0|65|197 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.155.52.99.0.60.16.104.154.224.1|65|354 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.0.60.16.104.154.224.0|65|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.8.123.135.28.247.160.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.8.123.135.29.160.64.17|65|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.40.172.158.52.22.96.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.40.172.158.69.128.160.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.98.40.172.158.73.197.128.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.99.0.60.16.104.154.224.1|65|354 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.171.52.99.40.172.158.52.22.96.1|65|252 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.187.52.99.0.60.16.104.154.224.1|65|354 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.203.52.99.0.60.16.104.154.224.1|65|1224 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.98.34.50.203.52.99.40.172.158.52.22.96.1|65|252 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.102.44.15.210.58.113.8.123.135.28.247.160.17|65|856 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.0.60.16.104.153.160.0|65|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.8.69.209.213.189.0.0|65|10 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.8.123.135.29.167.160.17|65|67 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.24.249.53.102.87.0.17|65|208 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.28.209.224.174.126.128.0|65|143 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.36.54.218.80.109.224.0|65|551 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.40.172.158.52.31.224.0|65|123 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.35.143.187.40.172.158.77.225.160.0|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.0.60.16.104.154.224.1|65|1044 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.8.69.209.213.189.0.0|65|460 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.8.69.209.213.189.0.1|65|130 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.28.209.224.174.126.128.1|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.36.54.218.80.109.224.1|65|102 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.51.143.187.40.172.158.77.225.160.1|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.0.60.16.104.153.160.0|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.8.69.209.213.189.0.0|65|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.8.123.135.29.167.160.17|65|68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.8.123.135.29.230.96.17|65|526 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.24.249.53.102.87.0.17|65|209 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.28.209.224.174.126.128.0|65|174 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.36.54.218.80.109.224.0|65|222 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.40.172.158.52.31.224.0|65|94 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.67.143.187.40.172.158.77.225.160.0|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.0.60.16.104.153.160.1|65|388 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.0.60.16.104.154.224.1|65|355 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.8.69.209.213.189.0.1|65|131 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.28.209.224.174.126.128.1|65|925 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.36.54.218.80.109.224.0|65|312 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.36.54.218.80.109.224.1|65|102 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.83.143.187.40.172.158.77.225.160.1|65|198 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.0.60.16.104.153.160.0|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.8.69.209.213.189.0.0|65|41 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.8.123.135.29.167.160.17|65|68 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.24.249.53.102.87.0.17|65|209 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.28.209.224.174.126.128.0|65|534 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.36.54.218.80.109.224.0|65|222 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.40.172.158.52.31.224.0|65|754 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.122.119.115.99.143.187.40.172.158.77.225.160.0|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.130.193.240.80.231.55.24.249.53.225.4.192.17|65|169 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.144.154.74.221.235.3.8.123.135.29.164.64.17|65|229 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.144.154.74.221.235.5.8.123.135.29.164.64.17|65|549 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.146.174.227.208.52.43.8.123.135.29.164.64.17|65|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.0.60.16.104.153.160.0|65|85 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.8.69.209.213.189.0.0|65|281 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.8.123.135.28.30.64.17|65|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.8.123.135.29.167.160.17|65|58 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.24.249.53.102.87.0.17|65|199 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.28.209.224.174.126.128.0|65|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.36.54.218.80.109.224.0|65|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.40.172.158.52.22.96.0|65|583 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.40.172.158.52.31.224.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.40.172.158.73.197.128.0|65|314 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.196.147.40.172.158.77.225.160.0|65|78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.0.60.16.104.153.160.0|65|295 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.8.69.209.213.189.0.0|65|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.8.123.135.29.212.160.17|65|729 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.8.123.135.29.230.96.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.24.249.53.102.87.0.17|65|209 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.28.209.224.173.249.0.0|65|125 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.28.209.224.174.126.128.0|65|144 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.36.54.218.80.101.224.0|65|460 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.36.54.218.80.109.224.0|65|222 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.40.172.158.52.31.224.0|65|124 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.40.172.158.59.131.224.0|65|94 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.88.139.28.7.225.128.17|65|78 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.88.139.28.15.230.128.17|65|37 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.88.139.28.184.116.64.17|65|41 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.57.244.219.230.228.7.192.0|65|95 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.0.60.16.104.154.224.0|65|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.8.123.135.28.247.160.17|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.8.123.135.29.160.64.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.8.123.135.29.230.64.17|65|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.40.172.158.52.22.96.0|65|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.40.172.158.69.128.160.0|65|343 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.40.172.158.73.197.128.0|65|14 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.69.40.172.158.77.225.160.0|65|888 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.197.76.0.223.29.42.246.64.0|65|28 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.0.60.16.104.153.160.0|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.8.69.209.213.189.0.0|65|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.8.123.135.29.230.96.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.28.209.224.173.249.0.0|65|95 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.28.209.224.174.126.128.0|65|174 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.36.54.218.80.109.224.0|65|222 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.40.172.158.52.31.224.0|65|124 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.40.172.158.56.69.96.0|65|665 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.40.172.158.59.131.224.0|65|94 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.40.172.158.77.225.160.0|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.88.139.28.7.225.128.17|65|120 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.88.139.28.184.54.32.17|65|545 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.202.212.244.219.230.228.7.192.0|65|125 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.0.60.16.104.153.160.0|65|85 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.8.69.209.213.189.0.0|65|11 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.8.123.135.29.230.96.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.36.54.218.80.92.0.0|65|103 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.36.54.218.80.101.224.0|65|130 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.36.54.218.80.109.224.0|65|222 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.40.172.158.52.31.224.0|65|94 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.40.172.158.56.69.96.0|65|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.40.172.158.59.131.224.0|65|124 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.40.172.158.61.47.192.0|65|97 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.88.139.28.6.101.160.17|65|88 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.88.139.28.6.111.192.17|65|747 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.88.139.28.7.225.128.17|65|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.88.139.28.9.132.128.17|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.190.221.194.36.203.205.244.219.230.228.7.192.0|65|95 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.212.98.102.160.80.0.60.16.104.153.160.0|65|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.8.123.135.28.30.64.17|65|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.8.123.135.29.160.64.17|65|719 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.8.123.135.29.230.64.17|65|1171 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.24.249.53.225.4.192.17|65|211 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.40.172.158.61.56.192.0|65|1071 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.40.172.158.69.128.160.0|65|763 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.40.172.158.73.198.96.0|65|110 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.224.225.169.118.154.63.40.172.158.76.139.32.0|65|14 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.45.6.162.185.70.8.69.209.213.189.0.0|65|971 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.45.6.162.185.70.8.123.135.28.247.160.17|65|60 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.0.60.16.104.153.160.0|65|385 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.8.69.209.213.189.0.0|65|431 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.8.123.135.29.167.160.17|65|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.8.123.135.29.230.96.17|65|138 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.24.249.53.102.87.0.17|65|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.28.209.224.174.126.128.0|65|594 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.36.54.218.80.103.64.0|65|192 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.12.244.111.237.139.122.192.40.172.158.59.131.224.0|65|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.103.98.11.175.24.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.103.98.11.175.24.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.103.98.11.175.24.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.103.98.11.175.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.0.103.98.11.175.24.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.60.132.106.136.204.30.8.123.135.28.170.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.60.132.106.159.175.130.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.19.243.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.19.243.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.24.249.53.102.134.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.88.139.28.8.101.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.20.216.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.26.19.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.26.19.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.82.2.145.214.26.19.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.96.34.50.251.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.171.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.102.44.15.210.58.113.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.35.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.144.154.74.221.235.3.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.146.174.227.208.52.43.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.196.147.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.88.139.28.15.230.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.88.139.28.184.116.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.57.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.69.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.197.76.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.88.139.28.184.54.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.202.212.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.88.139.28.6.101.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.190.221.194.36.203.205.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.212.98.102.160.80.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.224.225.169.118.154.63.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.45.6.162.185.70.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.45.6.162.185.70.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.13.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.60.132.106.159.175.130.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.68.209.250.117.93.125.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.68.209.250.117.93.125.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.35.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.212.98.102.160.80.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.224.225.169.118.154.63.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.45.6.162.185.70.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.45.6.162.185.70.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.14.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.83.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.15.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.103.98.11.175.24.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.103.98.11.175.24.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.103.98.11.175.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.0.103.98.11.175.24.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.60.132.106.136.204.30.8.123.135.28.170.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.19.243.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.19.243.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.24.249.53.102.134.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.88.139.28.8.101.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.20.216.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.26.19.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.26.19.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.82.2.145.214.26.19.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.171.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.102.44.15.210.58.113.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.35.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.144.154.74.221.235.5.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.146.174.227.208.52.43.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.196.147.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.88.139.28.15.230.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.88.139.28.184.116.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.57.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.69.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.197.76.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.88.139.28.184.54.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.202.212.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.88.139.28.6.101.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.190.221.194.36.203.205.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.212.98.102.160.80.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.224.225.169.118.154.63.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.45.6.162.185.70.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.16.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.83.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.17.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.160.64.17|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.167.160.17|2|40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.205.32.17|2|27 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.212.160.17|2|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.8.123.135.29.230.64.17|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.24.249.53.102.87.0.17|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.24.249.53.103.175.0.17|2|-20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.24.249.53.225.42.224.17|2|-20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.40.172.158.59.119.32.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.40.172.158.59.131.224.0|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.40.172.158.73.198.96.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.88.139.28.8.178.160.17|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.25.190.163.231.194.244.219.230.228.7.192.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.103.98.11.175.24.0.60.16.104.153.160.0|2|40 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.103.98.11.175.24.8.123.135.29.164.64.17|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.103.98.11.175.24.28.209.224.174.126.128.0|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.103.98.11.175.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.0.103.98.11.175.24.40.172.158.77.225.160.0|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.0.60.16.104.154.224.0|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.28.247.160.17|2|28 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.29.160.64.17|2|28 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.29.167.160.17|2|39 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.29.205.32.17|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.29.212.160.17|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.8.123.135.29.230.64.17|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.24.249.53.102.87.0.17|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.24.249.53.103.175.0.17|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.24.249.53.225.42.224.17|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.40.172.158.59.119.32.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.40.172.158.73.197.128.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.40.172.158.73.198.96.0|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.88.139.28.8.178.160.17|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.2.25.190.163.231.194.244.219.230.228.7.192.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.68.209.250.117.93.125.0.60.16.104.154.224.0|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.68.209.250.117.93.125.40.172.158.52.22.96.0|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.19.243.40.172.158.59.131.224.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.19.243.88.139.28.6.111.192.17|2|48 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.8.69.209.213.189.0.0|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.36.54.218.80.92.0.0|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.40.172.158.56.69.96.0|2|33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.88.139.28.9.132.128.17|2|36 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.20.216.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.26.19.40.172.158.56.69.96.0|2|32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.26.19.40.172.158.61.47.192.0|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.82.2.145.214.26.19.88.139.28.9.132.128.17|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.0.60.16.104.154.224.0|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.8.123.135.28.247.160.17|2|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.40.172.158.52.22.96.0|2|32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.40.172.158.69.128.160.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.40.172.158.73.197.128.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.98.40.172.158.77.225.160.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.99.0.60.16.104.154.224.1|2|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.96.34.50.251.52.99.40.172.158.52.22.96.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.0.60.16.104.154.224.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.8.123.135.28.247.160.17|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.40.172.158.52.22.96.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.40.172.158.69.128.160.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.155.52.99.0.60.16.104.154.224.1|2|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.0.60.16.104.154.224.0|2|27 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.8.123.135.28.247.160.17|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.8.123.135.29.160.64.17|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.40.172.158.52.22.96.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.40.172.158.69.128.160.0|2|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.98.40.172.158.73.197.128.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.99.0.60.16.104.154.224.1|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.171.52.99.40.172.158.52.22.96.1|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.187.52.99.0.60.16.104.154.224.1|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.203.52.99.0.60.16.104.154.224.1|2|15 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.98.34.50.203.52.99.40.172.158.52.22.96.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.102.44.15.210.58.113.8.123.135.28.247.160.17|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.0.60.16.104.153.160.0|2|47 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.8.69.209.213.189.0.0|2|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.28.209.224.174.126.128.0|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.36.54.218.80.109.224.0|2|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.35.143.187.40.172.158.77.225.160.0|2|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.0.60.16.104.154.224.1|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.28.209.224.174.126.128.1|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.36.54.218.80.109.224.1|2|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.51.143.187.40.172.158.77.225.160.1|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.0.60.16.104.153.160.0|2|46 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.8.123.135.29.230.96.17|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.28.209.224.174.126.128.0|2|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.36.54.218.80.109.224.0|2|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.67.143.187.40.172.158.77.225.160.0|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.0.60.16.104.153.160.1|2|45 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.0.60.16.104.154.224.1|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.28.209.224.174.126.128.1|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.36.54.218.80.109.224.1|2|14 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.83.143.187.40.172.158.77.225.160.1|2|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.0.60.16.104.153.160.0|2|45 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.8.69.209.213.189.0.0|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.28.209.224.174.126.128.0|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.40.172.158.52.31.224.0|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.122.119.115.99.143.187.40.172.158.77.225.160.0|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.130.193.240.80.231.55.24.249.53.225.4.192.17|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.144.154.74.221.235.3.8.123.135.29.164.64.17|2|13 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.144.154.74.221.235.5.8.123.135.29.164.64.17|2|10 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.0.60.16.104.153.160.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.8.69.209.213.189.0.0|2|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.28.209.224.174.126.128.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.36.54.218.80.109.224.0|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.40.172.158.52.22.96.0|2|10 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.40.172.158.52.31.224.0|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.40.172.158.73.197.128.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.196.147.40.172.158.77.225.160.0|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.0.60.16.104.153.160.0|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.8.69.209.213.189.0.0|2|36 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.8.123.135.29.230.96.17|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.28.209.224.173.249.0.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.28.209.224.174.126.128.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.36.54.218.80.109.224.0|2|36 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.40.172.158.59.131.224.0|2|30 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.88.139.28.7.225.128.17|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.0.60.16.104.154.224.0|2|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.8.123.135.28.247.160.17|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.8.123.135.29.160.64.17|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.8.123.135.29.230.64.17|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.40.172.158.52.22.96.0|2|34 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.40.172.158.69.128.160.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.69.40.172.158.77.225.160.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.197.76.0.223.29.42.246.64.0|2|42 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.0.60.16.104.153.160.0|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.8.69.209.213.189.0.0|2|32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.8.123.135.29.230.96.17|2|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.28.209.224.173.249.0.0|2|32 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.28.209.224.174.126.128.0|2|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.36.54.218.80.109.224.0|2|33 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.40.172.158.52.31.224.0|2|28 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.40.172.158.56.69.96.0|2|7 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.40.172.158.77.225.160.0|2|16 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.202.212.244.219.230.228.7.192.0|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.0.60.16.104.153.160.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.8.69.209.213.189.0.0|2|23 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.8.123.135.29.230.96.17|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.36.54.218.80.92.0.0|2|14 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.36.54.218.80.101.224.0|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.36.54.218.80.109.224.0|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.40.172.158.56.69.96.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.88.139.28.6.111.192.17|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.88.139.28.7.225.128.17|2|26 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.88.139.28.9.132.128.17|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.190.221.194.36.203.205.244.219.230.228.7.192.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.212.98.102.160.80.0.60.16.104.153.160.0|2|18 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.8.123.135.28.30.64.17|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.40.172.158.61.56.192.0|2|20 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.40.172.158.69.128.160.0|2|9 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.40.172.158.73.198.96.0|2|25 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.224.225.169.118.154.63.40.172.158.76.139.32.0|2|29 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.45.6.162.185.70.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.0.60.16.104.153.160.0|2|17 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.8.69.209.213.189.0.0|2|19 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.8.123.135.29.167.160.17|2|24 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.24.249.53.102.87.0.17|2|12 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.28.209.224.174.126.128.0|2|22 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.36.54.218.80.103.64.0|2|21 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.18.244.111.237.139.122.192.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.164.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.205.32.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.24.249.53.103.175.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.24.249.53.225.42.224.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.88.139.28.8.178.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.25.190.163.231.194.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.103.98.11.175.24.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.103.98.11.175.24.8.123.135.29.164.64.17|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.103.98.11.175.24.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.103.98.11.175.24.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.0.103.98.11.175.24.40.172.158.77.225.160.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.29.205.32.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.24.249.53.103.175.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.24.249.53.225.42.224.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.88.139.28.8.178.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.2.25.190.163.231.194.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.60.132.106.136.204.30.8.123.135.28.170.96.17|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.60.132.106.159.175.130.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.68.209.250.117.93.125.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.68.209.250.117.93.125.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.19.243.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.19.243.88.139.28.6.111.192.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.24.249.53.102.134.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.88.139.28.8.101.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.20.216.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.26.19.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.26.19.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.82.2.145.214.26.19.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.96.34.50.251.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.155.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.171.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.187.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.203.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.98.34.50.203.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.102.44.15.210.58.113.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.35.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.0.60.16.104.154.224.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.8.69.209.213.189.0.0|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.28.209.224.174.126.128.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.36.54.218.80.109.224.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.51.143.187.40.172.158.77.225.160.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.67.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.0.60.16.104.153.160.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.0.60.16.104.154.224.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.28.209.224.174.126.128.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.36.54.218.80.109.224.0|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.36.54.218.80.109.224.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.83.143.187.40.172.158.77.225.160.1|2|8 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.122.119.115.99.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.130.193.240.80.231.55.24.249.53.225.4.192.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.144.154.74.221.235.3.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.144.154.74.221.235.5.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.146.174.227.208.52.43.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.196.147.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.88.139.28.15.230.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.88.139.28.184.116.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.57.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.69.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.197.76.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.88.139.28.184.54.32.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.202.212.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.88.139.28.6.101.160.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.88.139.28.6.111.192.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.190.221.194.36.203.205.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.212.98.102.160.80.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.24.249.53.225.4.192.17|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.224.225.169.118.154.63.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.45.6.162.185.70.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.45.6.162.185.70.8.123.135.28.247.160.17|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.8.123.135.29.167.160.17|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.8.123.135.29.230.96.17|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.24.249.53.102.87.0.17|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.19.244.111.237.139.122.192.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.2.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.96.34.50.251.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.155.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.171.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.610.1.1.8.1.1.20.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.1.1.2.1|2|3 +1.3.6.1.4.1.9.9.612.1.1.1.1.2.2|2|3 +1.3.6.1.4.1.9.9.612.1.1.1.1.3.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.1.1.3.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.1.1.6.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.1.1.6.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.1.1.7.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.1.1.7.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.2.0|4|00 +1.3.6.1.4.1.9.9.612.1.1.3.0|4x|3830322e313162673a2d4120202020203830322e3131613a2d4120202020203830322e31313647687a3a20 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.0|66|7 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.1|66|14 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.2|66|21 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.3|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.4|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.5|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.6|66|65 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.7|66|72 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.8|66|14 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.9|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.10|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.11|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.12|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.13|66|116 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.14|66|130 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.15|66|144 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.16|66|22 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.17|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.18|66|65 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.19|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.20|66|130 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.21|66|173 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.22|66|195 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.23|66|217 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.24|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.25|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.26|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.27|66|116 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.28|66|173 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.29|66|231 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.30|66|260 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.1.31|66|289 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.0|66|7 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.1|66|14 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.2|66|21 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.3|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.4|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.5|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.6|66|65 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.7|66|72 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.8|66|14 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.9|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.10|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.11|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.12|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.13|66|116 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.14|66|130 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.15|66|144 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.16|66|22 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.17|66|43 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.18|66|65 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.19|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.20|66|130 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.21|66|173 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.22|66|195 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.23|66|217 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.24|66|29 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.25|66|58 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.26|66|87 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.27|66|116 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.28|66|173 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.29|66|231 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.30|66|260 +1.3.6.1.4.1.9.9.612.1.1.4.1.3.2.31|66|289 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.3|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.4|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.5|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.6|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.10|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.12|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.13|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.14|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.15|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.16|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.17|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.18|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.19|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.20|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.21|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.22|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.23|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.24|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.25|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.26|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.27|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.28|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.29|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.30|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.1.31|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.3|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.4|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.5|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.6|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.10|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.12|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.13|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.14|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.15|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.16|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.17|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.18|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.19|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.20|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.21|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.22|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.23|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.24|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.25|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.26|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.27|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.28|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.29|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.30|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.4.2.31|2|1 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.3|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.4|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.5|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.6|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.7|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.8|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.9|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.10|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.11|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.12|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.13|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.14|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.15|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.16|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.17|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.18|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.19|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.20|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.21|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.22|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.23|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.24|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.25|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.26|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.27|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.28|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.29|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.30|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.1.31|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.3|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.4|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.5|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.6|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.7|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.8|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.9|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.10|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.11|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.12|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.13|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.14|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.15|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.16|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.17|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.18|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.19|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.20|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.21|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.22|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.23|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.24|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.25|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.26|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.27|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.28|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.29|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.30|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.5.2.31|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.3|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.4|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.5|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.6|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.7|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.8|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.9|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.10|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.11|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.12|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.13|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.14|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.15|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.16|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.17|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.18|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.19|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.20|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.21|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.22|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.23|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.24|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.25|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.26|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.27|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.28|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.29|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.30|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.1.31|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.3|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.4|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.5|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.6|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.7|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.8|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.9|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.10|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.11|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.12|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.13|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.14|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.15|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.16|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.17|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.18|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.19|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.20|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.21|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.22|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.23|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.24|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.25|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.26|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.27|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.28|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.29|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.30|66|0 +1.3.6.1.4.1.9.9.612.1.1.4.1.6.2.31|66|0 +1.3.6.1.4.1.9.9.612.1.1.5.1.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.1.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.1.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.2.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.2.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.3.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.3.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.4.8|2|1 +1.3.6.1.4.1.9.9.612.1.1.6.1.3.4.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.8.1.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.8.2.0|2|5 +1.3.6.1.4.1.9.9.612.1.1.8.3.0|2|3 +1.3.6.1.4.1.9.9.612.1.1.8.5.0|2|5 +1.3.6.1.4.1.9.9.612.1.1.8.6.0|2|3 +1.3.6.1.4.1.9.9.612.1.1.8.7.0|2|5 +1.3.6.1.4.1.9.9.612.1.1.8.8.0|2|3 +1.3.6.1.4.1.9.9.612.1.1.9.1.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.9.2.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.9.3.0|2|200 +1.3.6.1.4.1.9.9.612.1.1.9.4.0|2|20 +1.3.6.1.4.1.9.9.612.1.1.9.5.0|2|60 +1.3.6.1.4.1.9.9.612.1.1.9.6.0|2|-80 +1.3.6.1.4.1.9.9.612.1.1.9.7.0|2|-80 +1.3.6.1.4.1.9.9.612.1.1.10.1.2.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.10.1.2.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.10.1.2.3|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.1.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.1.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.1.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.2.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.2.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.2.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.3.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.3.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.3.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.4.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.4.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.1.4.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.1.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.1.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.1.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.2.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.2.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.2.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.3.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.3.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.3.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.4.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.4.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.4.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.5.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.5.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.5.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.6.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.6.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.6.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.7.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.7.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.7.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.8.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.8.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.2.8.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.1.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.1.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.1.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.2.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.2.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.2.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.3.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.3.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.3.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.4.7|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.4.9|2|1 +1.3.6.1.4.1.9.9.612.1.1.11.1.4.3.4.11|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.1.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.2.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.30.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.170.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.170.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.247.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.28.247.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.9.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.9.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.160.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.160.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.164.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.164.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.164.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.164.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.167.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.167.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.205.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.205.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.212.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.212.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.230.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.230.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.230.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.8.123.135.29.230.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.95.147.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.95.147.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.97.136.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.97.136.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.102.87.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.102.87.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.102.134.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.102.134.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.103.175.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.103.175.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.225.4.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.225.4.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.225.42.224.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.24.249.53.225.42.224.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.6.101.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.6.101.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.6.111.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.6.111.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.7.225.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.7.225.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.8.101.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.8.101.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.8.178.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.8.178.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.9.132.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.9.132.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.15.230.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.15.230.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.184.54.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.184.54.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.184.116.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.88.139.28.184.116.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.3.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.30.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.170.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.170.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.247.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.28.247.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.9.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.9.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.160.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.160.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.164.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.164.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.164.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.164.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.167.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.167.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.205.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.205.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.212.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.212.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.230.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.230.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.230.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.8.123.135.29.230.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.95.147.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.95.147.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.97.136.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.97.136.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.102.87.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.102.87.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.102.134.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.102.134.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.103.175.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.103.175.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.225.4.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.225.4.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.225.42.224.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.24.249.53.225.42.224.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.6.101.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.6.101.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.6.111.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.6.111.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.7.225.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.7.225.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.8.101.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.8.101.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.8.178.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.8.178.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.9.132.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.9.132.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.15.230.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.15.230.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.184.54.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.184.54.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.184.116.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.88.139.28.184.116.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.4.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.30.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.170.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.170.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.247.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.28.247.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.9.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.9.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.160.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.160.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.164.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.164.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.164.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.164.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.167.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.167.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.205.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.205.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.212.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.212.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.230.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.230.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.230.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.8.123.135.29.230.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.95.147.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.95.147.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.97.136.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.97.136.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.102.87.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.102.87.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.102.134.96.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.102.134.96.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.103.175.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.103.175.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.225.4.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.225.4.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.225.42.224.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.24.249.53.225.42.224.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.6.101.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.6.101.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.6.111.192.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.6.111.192.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.7.225.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.7.225.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.8.101.0.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.8.101.0.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.8.178.160.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.8.178.160.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.9.132.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.9.132.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.15.230.128.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.15.230.128.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.184.54.32.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.184.54.32.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.184.116.64.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.88.139.28.184.116.64.1|66|1 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.5.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.6.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.30.64.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.30.64.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.170.96.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.170.96.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.247.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.28.247.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.9.128.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.9.128.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.160.64.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.160.64.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.164.0.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.164.0.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.164.64.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.164.64.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.167.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.167.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.205.32.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.205.32.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.212.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.212.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.230.64.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.230.64.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.230.96.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.8.123.135.29.230.96.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.95.147.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.95.147.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.97.136.32.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.97.136.32.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.102.87.0.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.102.87.0.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.102.134.96.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.102.134.96.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.103.175.0.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.103.175.0.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.225.4.192.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.225.4.192.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.225.42.224.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.24.249.53.225.42.224.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.6.101.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.6.101.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.6.111.192.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.6.111.192.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.7.225.128.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.7.225.128.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.8.101.0.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.8.101.0.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.8.178.160.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.8.178.160.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.9.132.128.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.9.132.128.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.15.230.128.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.15.230.128.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.184.54.32.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.184.54.32.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.184.116.64.0|66|170 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.88.139.28.184.116.64.1|66|43690 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.9.9.612.1.1.12.1.7.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.9.9.612.1.1.13.1.2.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.13.1.2.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.13.1.2.3|2|1 +1.3.6.1.4.1.9.9.612.1.1.14.1.0|2|-85 +1.3.6.1.4.1.9.9.612.1.1.14.2.0|2|-85 +1.3.6.1.4.1.9.9.612.1.1.15.1.1.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.15.1.1.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.15.1.1.3|2|2 +1.3.6.1.4.1.9.9.612.1.1.16.1.1.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.16.1.1.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.16.1.1.3|2|2 +1.3.6.1.4.1.9.9.612.1.1.17.1.1.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.17.1.1.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.17.1.1.3|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.153.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.60.16.104.154.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.0.223.29.42.246.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.69.209.213.189.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.173.249.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.28.209.224.174.126.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.92.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.101.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.103.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.36.54.218.80.109.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.22.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.52.31.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.56.69.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.119.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.59.131.224.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.47.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.61.56.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.69.128.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.197.128.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.0.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.73.198.96.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.76.139.32.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.40.172.158.77.225.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.112.105.90.156.95.64.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.180.222.49.102.89.160.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.1.244.219.230.228.7.192.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.30.64.0|2|6 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.30.64.1|2|4 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.170.96.0|2|53 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.170.96.1|2|15 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.247.160.0|2|14 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.28.247.160.1|2|30 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.9.128.0|2|26 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.9.128.1|2|10 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.160.64.0|2|59 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.160.64.1|2|48 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.164.0.1|2|21 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.164.64.0|2|57 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.164.64.1|2|6 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.167.160.0|2|41 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.167.160.1|2|3 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.205.32.0|2|27 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.205.32.1|2|12 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.212.160.0|2|39 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.212.160.1|2|17 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.230.64.0|2|32 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.230.64.1|2|53 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.230.96.0|2|12 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.8.123.135.29.230.96.1|2|18 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.95.147.160.0|2|49 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.95.147.160.1|2|22 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.97.136.32.0|2|62 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.97.136.32.1|2|18 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.102.87.0.0|2|34 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.102.87.0.1|2|27 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.102.134.96.0|2|33 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.102.134.96.1|2|44 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.103.175.0.0|2|61 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.103.175.0.1|2|39 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.225.4.192.0|2|15 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.225.4.192.1|2|19 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.225.42.224.0|2|28 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.24.249.53.225.42.224.1|2|44 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.6.101.160.0|2|47 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.6.101.160.1|2|28 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.6.111.192.0|2|29 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.6.111.192.1|2|46 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.7.225.128.0|2|42 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.7.225.128.1|2|28 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.8.101.0.0|2|22 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.8.101.0.1|2|54 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.8.178.160.0|2|5 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.8.178.160.1|2|34 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.9.132.128.0|2|45 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.9.132.128.1|2|62 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.15.230.128.0|2|16 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.15.230.128.1|2|18 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.184.54.32.0|2|31 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.184.54.32.1|2|30 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.184.116.64.0|2|63 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.88.139.28.184.116.64.1|2|40 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.612.1.1.18.1.3.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.9.9.612.1.1.19.1.1.181|66|181 +1.3.6.1.4.1.9.9.612.1.1.19.1.2.181|2|1 +1.3.6.1.4.1.9.9.612.1.1.20.1.1.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.20.1.1.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.20.1.2.1|2|-62 +1.3.6.1.4.1.9.9.612.1.1.20.1.2.2|2|-62 +1.3.6.1.4.1.9.9.612.1.1.20.1.3.1|2|2 +1.3.6.1.4.1.9.9.612.1.1.20.1.3.2|2|2 +1.3.6.1.4.1.9.9.612.1.1.20.1.4.1|2|-82 +1.3.6.1.4.1.9.9.612.1.1.20.1.4.2|2|-82 +1.3.6.1.4.1.9.9.612.1.1.20.1.5.1|2|-62 +1.3.6.1.4.1.9.9.612.1.1.20.1.5.2|2|-62 +1.3.6.1.4.1.9.9.612.1.1.21.1.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.21.2.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.22.1.0|66|100 +1.3.6.1.4.1.9.9.612.1.1.22.2.0|66|4 +1.3.6.1.4.1.9.9.612.1.1.22.3.0|66|60 +1.3.6.1.4.1.9.9.612.1.1.22.4.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.22.5.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.22.6.0|66|1 +1.3.6.1.4.1.9.9.612.1.1.22.7.0|66|2347 +1.3.6.1.4.1.9.9.612.1.1.22.8.0|66|7 +1.3.6.1.4.1.9.9.612.1.1.22.9.0|66|4 +1.3.6.1.4.1.9.9.612.1.1.22.10.0|66|2346 +1.3.6.1.4.1.9.9.612.1.1.22.11.0|66|512 +1.3.6.1.4.1.9.9.612.1.1.22.12.0|66|512 +1.3.6.1.4.1.9.9.612.1.1.22.13.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.23.1.0|2|2 +1.3.6.1.4.1.9.9.612.1.1.23.2.0|66|100 +1.3.6.1.4.1.9.9.612.1.1.23.3.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.23.4.0|66|600 +1.3.6.1.4.1.9.9.612.1.1.23.5.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.23.6.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.23.7.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.23.8.0|2|1 +1.3.6.1.4.1.9.9.612.1.1.23.9.0|2|0 +1.3.6.1.4.1.9.9.612.1.1.23.10.0|66|0 +1.3.6.1.4.1.9.9.612.1.1.23.11.0|2|75 +1.3.6.1.4.1.9.9.612.1.1.23.12.0|2|1 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.65.69|4x|556e69746564204172616220456d697261746573 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.65.76|4|Albania +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.65.82|4|Argentina +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.65.84|4|Austria +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.65.85|4|Australia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.65|4|Bosnia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.66|4|Barbados +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.68|4|Bangladesh +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.69|4|Belgium +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.71|4|Bulgaria +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.72|4|Bahrain +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.73|4|Burundi +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.77|4|Bahamas +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.78|4|Brunei +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.79|4|Bolivia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.82|4|Brazil +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.87|4|Botswana +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.66.89|4|Belarus +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.65|4|Canada +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.72|4|Switzerland +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.76|4|Chile +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.77|4|Cameroon +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.78|4|China +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.79|4|Colombia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.82|4x|436f7374612052696361 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.85|4|Cuba +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.89|4|Cyprus +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.67.90|4x|437a6563682052657075626c6963 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.68.69|4|Germany +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.68.75|4|Denmark +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.68.79|4x|446f6d696e6963616e2052657075626c6963 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.68.90|4|Algeria +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.69.67|4|Ecuador +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.69.69|4|Estonia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.69.71|4|Egypt +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.69.76|4x|456c2053616c7661646f72 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.69.83|4|Spain +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.70.73|4|Finland +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.70.74|4|Fiji +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.70.82|4|France +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.65|4|Gabon +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.66|4x|556e69746564204b696e67646f6d +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.72|4|Ghana +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.73|4|Gibraltar +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.82|4|Greece +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.71.84|4|Guatemala +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.72.75|4x|486f6e67204b6f6e67 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.72.82|4|Croatia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.72.85|4|Hungary +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.68|4|Indonesia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.69|4|Ireland +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.76|4|Israel +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.78|4|India +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.79|4x|49737261656c20286f7574646f6f7229 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.81|4|Iraq +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.83|4|Iceland +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.73.84|4|Italy +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.74.52|4x|4a6170616e2034285129 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.74.77|4|Jamaica +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.74.79|4|Jordan +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.75.69|4x|4b6f72656120457874656e6465642028434b29 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.75.78|4|Kenya +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.75.87|4|Kuwait +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.75.90|4|Kazakhstan +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.66|4|Lebanon +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.73|4|Liechtenstein +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.75|4x|537269204c616e6b61 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.84|4|Lithuania +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.85|4|Luxembourg +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.86|4|Latvia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.76.89|4|Libya +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.65|4|Morocco +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.67|4|Monaco +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.69|4|Montenegro +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.75|4|Macedonia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.78|4|Mongolia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.79|4|Macau +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.84|4|Malta +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.85|4|Mauritius +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.88|4|Mexico +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.77.89|4|Malaysia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.78.65|4|Namibia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.78.71|4|Nigeria +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.78.76|4|Netherlands +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.78.79|4|Norway +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.78.90|4x|4e6577205a65616c616e64 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.79.77|4|Oman +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.65|4|Panama +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.69|4|Peru +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.72|4|Philipines +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.75|4|Pakistan +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.76|4|Poland +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.82|4x|50756572746f205269636f +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.84|4|Portugal +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.80.89|4|Paraguay +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.81.65|4|Qatar +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.82.79|4|Romania +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.82.83|4|Serbia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.82.85|4x|5275737369616e2046656465726174696f6e +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.83.65|4x|536175646920417261626961 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.83.69|4|Sweden +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.83.71|4|Singapore +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.83.73|4|Slovenia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.83.75|4x|536c6f76616b2052657075626c6963 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.72|4|Thailand +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.73|4|Trinidad +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.78|4|Tunisia +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.82|4|Turkey +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.87|4|Taiwan +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.84.90|4x|556e697465642052657075626c6963206f662054616e7a616e6961 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.85.65|4|Ukraine +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.85.71|4|Uganda +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.85.83|4x|556e6974656420537461746573 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.85.89|4|Uruguay +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.85.90|4|Uzbekistan +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.86.69|4|Venezuela +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.86.78|4|Vietnam +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.90.65|4x|536f75746820416672696361 +1.3.6.1.4.1.9.9.612.1.2.1.1.2.2.90.77|4|Zambia +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.65.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.65.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.65.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.65.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.65.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.68|4x|3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.66.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.85|4x|3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.67.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.68.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.68.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.68.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.68.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.69.67|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c3136352c3139302c313936 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.69.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.69.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.69.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.69.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.70.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.70.74|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.70.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.71.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.72.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.72.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.72.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.68|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.81|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.73.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.74.52|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c382c31322c3136 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.74.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.74.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.75.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.75.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.75.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.75.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.86|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.76.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.67|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.88|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.77.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.78.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.78.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.78.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.78.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.78.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.79.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.80.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.81.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.82.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.82.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.82.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.83.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.83.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.83.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.83.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.83.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.84.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.85.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.85.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.85.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.85.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.85.90|4x|33362c34302c34342c34382c35322c35362c36302c3634 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.86.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.86.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.90.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.3.2.90.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.65.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.65.76|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.65.82|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.65.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.65.85|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.66|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.68|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.71|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.72|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.77|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c3134 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.79|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.82|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.87|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.66.89|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.65|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.72|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.76|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.77|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.82|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.85|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.89|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.67.90|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.68.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.68.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.68.79|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.68.90|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.69.67|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.69.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.69.71|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.69.76|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.69.83|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.70.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.70.74|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.70.82|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.66|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.72|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.82|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.71.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.72.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.72.82|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.72.85|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.68|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.76|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.78|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.81|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.83|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.73.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.74.52|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c3134 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.74.77|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.74.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.75.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.75.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.75.87|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.75.90|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.66|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.85|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.86|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.76.89|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.67|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c3134 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.85|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.88|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.77.89|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.78.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.78.71|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.78.76|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.78.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.78.90|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.79.77|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.72|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.76|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.82|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.84|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.80.89|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.81.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.82.79|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.82.83|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.82.85|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.83.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.83.69|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.83.71|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c31332c3134 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.83.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.83.75|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.72|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.73|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.82|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.87|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.84.90|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.85.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.85.71|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.85.83|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.85.89|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.85.90|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.86.69|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.86.78|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.90.65|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.4.2.90.77|4x|312c322c332c342c352c362c372c382c392c31302c31312c31322c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.65.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.65.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.65.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.65.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.65.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.68|4x|3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.66.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.85|4x|3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.67.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.68.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.68.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.68.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.68.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.69.67|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.69.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.69.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.69.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.69.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.70.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.70.74|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.70.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.71.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.72.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.72.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.72.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.68|4x|33362c34302c34342c34382c35322c35362c36302c36342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.81|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.73.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.74.52|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c313434 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.74.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.74.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.75.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.75.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.75.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.75.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.66|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.86|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.76.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.67|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.88|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.77.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.78.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.78.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.78.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.78.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.78.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.79.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.76|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.84|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.80.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.81.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.82.79|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.82.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.82.85|4x|33362c34302c34342c34382c35322c35362c36302c36342c3133322c3133362c3134302c3134342c3134392c3135332c3135372c3136312c3136352c3136392c313733 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.83.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.83.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.83.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.83.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.83.75|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.72|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.73|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.82|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c313430 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.87|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.84.90|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.85.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.85.71|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.85.83|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134342c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.85.89|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.85.90|4x|33362c34302c34342c34382c35322c35362c36302c3634 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.86.69|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.86.78|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.90.65|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.5.2.90.77|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3132302c3132342c3132382c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.65.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.65.76|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.65.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.65.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.65.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.66|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.68|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.71|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.72|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.77|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.87|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.66.89|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.72|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.76|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.77|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.89|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.67.90|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.68.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.68.75|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.68.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.68.90|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.69.67|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.69.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.69.71|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.69.76|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.69.83|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.70.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.70.74|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.70.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.66|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.72|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.71.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.72.75|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.72.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.72.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.68|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.76|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.81|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.83|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.73.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.74.52|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.74.77|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.74.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.75.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.75.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.75.87|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.75.90|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.66|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.75|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.86|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.76.89|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.65|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.67|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.75|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.88|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.77.89|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.78.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.78.71|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.78.76|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.78.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.78.90|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.79.77|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.72|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.75|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.76|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.82|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.84|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.80.89|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.81.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.82.79|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.82.83|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.82.85|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.83.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.83.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.83.71|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.83.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.83.75|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.72|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.73|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.78|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.82|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.87|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.84.90|4x|312c352c392c3133 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.85.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.85.71|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.85.83|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.85.89|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.85.90|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.86.69|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.86.78|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.90.65|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.6.2.90.77|4x|312c362c3131 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.65.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.65.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.65.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.65.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.65.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.66|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.68|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.71|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.66.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.65|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.72|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.89|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.67.90|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.68.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.68.75|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.68.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.68.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.69.67|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.69.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.69.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.69.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.69.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.70.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.70.74|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.70.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.66|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.71.84|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.72.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.72.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.72.85|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.68|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.81|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.73.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.74.52|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.74.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.74.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.75.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.75.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.75.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.75.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.66|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.85|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.86|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.76.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.67|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.88|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.77.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.78.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.78.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.78.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.78.79|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.78.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.79.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.80.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.81.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.82.79|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.82.83|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.82.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.83.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.83.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.83.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.83.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.83.75|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.84.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.85.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.85.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.85.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.85.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.85.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.86.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.86.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.90.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.7.2.90.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.65.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.65.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.65.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.65.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.65.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.66|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.68|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.71|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.66.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.65|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.72|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.89|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.67.90|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.68.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.68.75|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.68.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.68.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.69.67|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.69.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.69.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.69.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.69.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.70.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.70.74|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.70.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.66|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.71.84|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.72.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.72.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.72.85|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.68|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.76|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.81|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.73.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.74.52|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.74.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.74.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.75.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.75.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.75.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.75.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.66|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.85|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.86|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.76.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.67|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.79|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.88|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.77.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.78.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.78.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.78.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.78.79|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.78.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.79.77|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.75|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.76|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.82|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.84|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.80.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.81.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.82.79|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.82.83|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.82.85|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.83.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.83.69|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.83.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.83.73|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.83.75|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c3933 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.72|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.73|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.82|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.87|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.84.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.85.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.85.71|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.85.83|4x|312c352c392c31332c31372c32312c32352c32392c33332c33372c34312c34352c34392c35332c35372c36312c36352c36392c37332c37372c38312c38352c38392c39332c39372c3130312c3130352c3130392c3131332c3131372c3132312c3132352c3132392c3133332c3133372c3134312c3134352c3134392c3135332c3135372c3136312c3136352c3136392c3137332c3137372c3138312c3138352c3138392c3139332c3139372c3230312c3230352c3230392c3231332c3231372c3232312c3232352c3232392c323333 +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.85.89|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.85.90|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.86.69|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.86.78|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.90.65|4| +1.3.6.1.4.1.9.9.612.1.2.1.1.8.2.90.77|4| +1.3.6.1.4.1.9.9.613.1.1.1.0|66|32768 +1.3.6.1.4.1.9.9.613.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.613.1.5.1.0|4x|00 +1.3.6.1.4.1.9.9.615.1.1.1.1.3.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.3.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.4.1|66|100 +1.3.6.1.4.1.9.9.615.1.1.1.1.4.2|66|100 +1.3.6.1.4.1.9.9.615.1.1.1.1.5.1|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.5.2|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.6.1|2|-80 +1.3.6.1.4.1.9.9.615.1.1.1.1.6.2|2|-80 +1.3.6.1.4.1.9.9.615.1.1.1.1.7.1|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.7.2|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.8.1|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.8.2|66|50 +1.3.6.1.4.1.9.9.615.1.1.1.1.9.1|2|-80 +1.3.6.1.4.1.9.9.615.1.1.1.1.9.2|2|-80 +1.3.6.1.4.1.9.9.615.1.1.1.1.10.1|2|4 +1.3.6.1.4.1.9.9.615.1.1.1.1.10.2|2|4 +1.3.6.1.4.1.9.9.615.1.1.1.1.11.1|2|30 +1.3.6.1.4.1.9.9.615.1.1.1.1.11.2|2|30 +1.3.6.1.4.1.9.9.615.1.1.1.1.12.1|2|-10 +1.3.6.1.4.1.9.9.615.1.1.1.1.12.2|2|-10 +1.3.6.1.4.1.9.9.615.1.1.1.1.14.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.14.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.15.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.15.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.16.1|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.16.2|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.17.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.17.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.1.1.18.1|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.18.2|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.19.1|66|200 +1.3.6.1.4.1.9.9.615.1.1.1.1.19.2|66|200 +1.3.6.1.4.1.9.9.615.1.1.1.1.22.1|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.22.2|2|2 +1.3.6.1.4.1.9.9.615.1.1.1.1.23.1|2|0 +1.3.6.1.4.1.9.9.615.1.1.1.1.23.2|2|0 +1.3.6.1.4.1.9.9.615.1.1.5.1.1.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.1.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.1.3|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.2.1|4x|0ab73464 +1.3.6.1.4.1.9.9.615.1.1.5.1.2.2|4x|0ab73464 +1.3.6.1.4.1.9.9.615.1.1.5.1.2.3|4x|0ab73464 +1.3.6.1.4.1.9.9.615.1.1.5.1.3.1|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.5.1.3.2|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.5.1.3.3|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.5.1.4.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.4.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.4.3|2|1 +1.3.6.1.4.1.9.9.615.1.1.5.1.5.1|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.5.2|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.5.3|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.7.1|66|111 +1.3.6.1.4.1.9.9.615.1.1.5.1.7.2|66|386 +1.3.6.1.4.1.9.9.615.1.1.5.1.7.3|66|514 +1.3.6.1.4.1.9.9.615.1.1.5.1.8.1|66|600 +1.3.6.1.4.1.9.9.615.1.1.5.1.8.2|66|600 +1.3.6.1.4.1.9.9.615.1.1.5.1.8.3|66|600 +1.3.6.1.4.1.9.9.615.1.1.5.1.9.1|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.9.2|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.9.3|2|2 +1.3.6.1.4.1.9.9.615.1.1.5.1.10.1|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.615.1.1.5.1.10.2|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.615.1.1.5.1.10.3|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.615.1.1.9.1.1.1|4x|312c362c3131 +1.3.6.1.4.1.9.9.615.1.1.9.1.1.2|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.615.1.1.9.1.1.3|4| +1.3.6.1.4.1.9.9.615.1.1.9.1.2.1|4x|322c332c342c352c372c382c392c31302c31322c3133 +1.3.6.1.4.1.9.9.615.1.1.9.1.2.2|4x|3132302c3132342c3132382c313635 +1.3.6.1.4.1.9.9.615.1.1.9.1.2.3|4| +1.3.6.1.4.1.9.9.615.1.1.9.1.3.1|4x|312c362c3131 +1.3.6.1.4.1.9.9.615.1.1.9.1.3.2|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.615.1.1.9.1.3.3|4| +1.3.6.1.4.1.9.9.615.1.1.11.1.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.11.2.0|2|1 +1.3.6.1.4.1.9.9.615.1.1.11.3.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.11.8.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.11.9.0|2|1 +1.3.6.1.4.1.9.9.615.1.1.12.1.0|66|5 +1.3.6.1.4.1.9.9.615.1.1.12.2.0|66|15 +1.3.6.1.4.1.9.9.615.1.1.12.3.0|66|3 +1.3.6.1.4.1.9.9.615.1.1.15.1.3.1.1.4.10.183.52.100|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.15.1.3.2.1.4.10.183.52.100|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.15.1.3.3.1.4.10.183.52.100|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.9.9.615.1.1.15.1.4.1.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.4.2.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.4.3.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.5.1.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.5.2.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.5.3.1.4.10.183.52.100|2|1 +1.3.6.1.4.1.9.9.615.1.1.15.1.6.1.1.4.10.183.52.100|2|0 +1.3.6.1.4.1.9.9.615.1.1.15.1.6.2.1.4.10.183.52.100|2|0 +1.3.6.1.4.1.9.9.615.1.1.15.1.6.3.1.4.10.183.52.100|2|0 +1.3.6.1.4.1.9.9.615.1.1.15.1.7.1.1.4.10.183.52.100|4| +1.3.6.1.4.1.9.9.615.1.1.15.1.7.2.1.4.10.183.52.100|4| +1.3.6.1.4.1.9.9.615.1.1.15.1.7.3.1.4.10.183.52.100|4| +1.3.6.1.4.1.9.9.615.1.1.16.1.1.1|2|1 +1.3.6.1.4.1.9.9.615.1.1.16.1.1.2|2|1 +1.3.6.1.4.1.9.9.615.1.1.16.1.1.3|2|1 +1.3.6.1.4.1.9.9.615.1.1.17.1.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.18.1.0|66|1000000 +1.3.6.1.4.1.9.9.615.1.1.18.2.0|66|600 +1.3.6.1.4.1.9.9.615.1.1.18.3.0|66|60 +1.3.6.1.4.1.9.9.615.1.1.18.4.0|66|180 +1.3.6.1.4.1.9.9.615.1.1.18.5.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.18.6.0|66|20 +1.3.6.1.4.1.9.9.615.1.1.19.1.0|2|2 +1.3.6.1.4.1.9.9.615.1.1.20.1.1.3|2|1 +1.3.6.1.4.1.9.9.615.1.1.20.1.2.3|66|100 +1.3.6.1.4.1.9.9.615.1.1.20.1.3.3|66|50 +1.3.6.1.4.1.9.9.615.1.1.20.1.4.3|66|50 +1.3.6.1.4.1.9.9.615.1.1.20.1.5.3|66|50 +1.3.6.1.4.1.9.9.615.1.1.20.1.6.3|2|2 +1.3.6.1.4.1.9.9.615.1.1.20.1.7.3|2|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.2.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|4x|64656661756c74206d6573682070726f66696c65 +1.3.6.1.4.1.9.9.616.1.1.3.1.3.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.4.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.5.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.6.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.7.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.8.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.9.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.10.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.11.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|3 +1.3.6.1.4.1.9.9.616.1.1.3.1.12.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|12000 +1.3.6.1.4.1.9.9.616.1.1.3.1.13.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.14.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.15.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.16.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.616.1.1.3.1.17.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.18.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.616.1.1.3.1.19.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.20.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.616.1.1.3.1.21.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.616.1.1.3.1.22.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.23.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.24.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.25.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.26.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.27.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.28.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.29.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.30.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.31.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.32.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|1 +1.3.6.1.4.1.9.9.616.1.1.3.1.33.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.616.1.1.3.1.34.20.100.101.102.97.117.108.116.45.109.101.115.104.45.112.114.111.102.105.108.101|66|1 +1.3.6.1.4.1.9.9.616.1.2.3.0|2|1 +1.3.6.1.4.1.9.9.616.1.2.4.0|66|5 +1.3.6.1.4.1.9.9.616.1.2.5.0|66|10 +1.3.6.1.4.1.9.9.616.1.2.6.0|2|48000 +1.3.6.1.4.1.9.9.616.1.2.7.0|66|12 +1.3.6.1.4.1.9.9.616.1.2.8.0|66|12 +1.3.6.1.4.1.9.9.616.1.2.9.0|2|18000 +1.3.6.1.4.1.9.9.616.1.2.10.0|66|3 +1.3.6.1.4.1.9.9.616.1.2.11.0|2|36000 +1.3.6.1.4.1.9.9.616.1.2.14.0|66|4 +1.3.6.1.4.1.9.9.616.1.2.15.0|66|20 +1.3.6.1.4.1.9.9.616.1.2.16.0|66|10 +1.3.6.1.4.1.9.9.616.1.2.17.0|66|60 +1.3.6.1.4.1.9.9.616.1.2.18.0|66|56 +1.3.6.1.4.1.9.9.616.1.2.19.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.24.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.25.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.26.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.29.0|66|1 +1.3.6.1.4.1.9.9.616.1.2.30.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.31.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.32.0|2|2 +1.3.6.1.4.1.9.9.616.1.2.33.0|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.0.60.16.104.153.160.1|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.0.223.29.42.246.64.1|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.69.209.213.189.0.1|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.28.30.64.1|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.28.170.96.1|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.28.247.160.1|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.9.128.1|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.160.64.1|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.164.0.1|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.164.64.1|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.167.160.1|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.205.32.1|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.212.160.1|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.230.64.1|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.8.123.135.29.230.96.1|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.95.147.160.1|4x|4d41522d5453442d4f4646432d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.97.136.32.1|4x|4d41522d43484d502d30382d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.102.87.0.1|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.102.134.96.1|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.103.175.0.1|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.225.4.192.1|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.24.249.53.225.42.224.1|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.28.209.224.173.249.0.1|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.28.209.224.174.126.128.1|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.36.54.218.80.92.0.1|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.36.54.218.80.101.224.1|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.36.54.218.80.103.64.1|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.36.54.218.80.109.224.1|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.52.31.224.1|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.56.69.96.1|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.59.119.32.1|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.59.131.224.1|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.61.47.192.1|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.61.56.128.1|4x|4d41525f43484d505f30315f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.61.56.192.1|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.69.128.160.1|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.73.197.128.1|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.73.198.0.1|4x|4d41525f4c4f475f4f57485f41505f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.73.198.96.1|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.76.139.32.1|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.40.172.158.77.225.160.1|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.6.101.160.1|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.6.111.192.1|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.7.225.128.1|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.8.101.0.1|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.8.178.160.1|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.9.132.128.1|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.15.230.128.1|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.184.54.32.1|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.88.139.28.184.116.64.1|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.112.105.90.156.95.64.1|4x|4d41525f43484d505f30355f4150 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.180.222.49.102.89.160.1|4x|4d41525f41444d494e5f4255494c44494e47 +1.3.6.1.4.1.9.9.623.1.3.1.1.2.244.219.230.228.7.192.1|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.3.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.0.60.16.104.153.160.1|4x|0ab73499 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.0.60.16.104.154.224.1|4x|0ab73488 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.0.223.29.42.246.64.1|4x|0ab7349a +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.69.209.213.189.0.1|4x|0ab7349d +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.28.30.64.1|4x|0ab73479 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.28.170.96.1|4x|0ab73478 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.28.247.160.1|4x|0ab7347e +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.9.128.1|4x|0ab7347d +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.160.64.1|4x|0ab7347b +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.164.0.1|4x|0ab73484 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.164.64.1|4x|0ab7347f +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.167.160.1|4x|0ab73483 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.205.32.1|4x|0ab73474 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.212.160.1|4x|0ab73481 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.230.64.1|4x|0ab7347c +1.3.6.1.4.1.9.9.623.1.3.1.1.4.8.123.135.29.230.96.1|4x|0ab73472 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.95.147.160.1|4x|0ab73473 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.97.136.32.1|4x|0ab73475 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.102.87.0.1|4x|0ab73480 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.102.134.96.1|4x|0ab73476 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.103.175.0.1|4x|0ab73482 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.225.4.192.1|4x|0ab7347a +1.3.6.1.4.1.9.9.623.1.3.1.1.4.24.249.53.225.42.224.1|4x|0ab73477 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.28.209.224.173.249.0.1|4x|0ab7349b +1.3.6.1.4.1.9.9.623.1.3.1.1.4.28.209.224.174.126.128.1|4x|0ab73489 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.36.54.218.80.92.0.1|4x|0ab73495 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.36.54.218.80.101.224.1|4x|0ab7349e +1.3.6.1.4.1.9.9.623.1.3.1.1.4.36.54.218.80.103.64.1|4x|0ab7349c +1.3.6.1.4.1.9.9.623.1.3.1.1.4.36.54.218.80.109.224.1|4x|0ab73496 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.52.22.96.1|4x|0ab73493 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.52.31.224.1|4x|0ab73497 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.56.69.96.1|4x|0ab73494 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.59.119.32.1|4x|0ab73498 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.59.131.224.1|4x|0ab73485 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.61.47.192.1|4x|0ab73486 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.61.56.128.1|4x|0ab73492 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.61.56.192.1|4x|0ab73491 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.69.128.160.1|4x|0ab7348c +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.73.197.128.1|4x|0ab7348d +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.73.198.0.1|4x|0ab7348a +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.73.198.96.1|4x|0ab73490 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.76.139.32.1|4x|0ab7348b +1.3.6.1.4.1.9.9.623.1.3.1.1.4.40.172.158.77.225.160.1|4x|0ab7348f +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.6.101.160.1|4x|0ab7346c +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.6.111.192.1|4x|0ab7346e +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.7.225.128.1|4x|0ab7346d +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.8.101.0.1|4x|0ab73470 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.8.178.160.1|4x|0ab7346f +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.9.132.128.1|4x|0ab73471 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.15.230.128.1|4x|0ab73469 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.184.54.32.1|4x|0ab7346a +1.3.6.1.4.1.9.9.623.1.3.1.1.4.88.139.28.184.116.64.1|4x|0ab7346b +1.3.6.1.4.1.9.9.623.1.3.1.1.4.112.105.90.156.95.64.1|4x|0ab7348e +1.3.6.1.4.1.9.9.623.1.3.1.1.4.180.222.49.102.89.160.1|4x|0ab73487 +1.3.6.1.4.1.9.9.623.1.3.1.1.4.244.219.230.228.7.192.1|4x|0ab7349f +1.3.6.1.4.1.9.9.623.1.3.1.1.5.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.5.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.0.60.16.104.153.160.1|4x|4d41522d4944462d51432d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.0.60.16.104.154.224.1|4x|4d41522d4944462d4c4f472d32462e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.0.223.29.42.246.64.1|4x|4d41522d4944462d4d41494e542d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.69.209.213.189.0.1|4x|4d41522d4944462d53434144412e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.28.30.64.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.28.170.96.1|4x|4d41522d4d44462d41444d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.28.247.160.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.9.128.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.160.64.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.164.0.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.164.64.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.167.160.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.205.32.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.212.160.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.230.64.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.8.123.135.29.230.96.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.95.147.160.1|4x|4d41522d4944462d4d41494e542d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.97.136.32.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.102.87.0.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.102.134.96.1|4x|4d41522d4944462d524d504d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.103.175.0.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.225.4.192.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.24.249.53.225.42.224.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.28.209.224.173.249.0.1|4x|4d41522d4944462d50524f442d312e6e75747269617369612e636f6d +1.3.6.1.4.1.9.9.623.1.3.1.1.6.28.209.224.174.126.128.1|4x|4d41522d4944462d51432d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.36.54.218.80.92.0.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.36.54.218.80.101.224.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.36.54.218.80.103.64.1|4x|4d41522d4944462d51432d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.36.54.218.80.109.224.1|4x|4d41522d4944462d51432d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.52.22.96.1|4x|4d41522d4944462d4c4f472d4f57482d31 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.52.31.224.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.56.69.96.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.59.119.32.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.59.131.224.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.61.47.192.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.61.56.128.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.61.56.192.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.69.128.160.1|4x|4d41522d4944462d4c4f472d4f57482d31 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.73.197.128.1|4x|4d41522d4944462d4c4f472d4f57482d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.73.198.0.1|4x|4d41522d4944462d4c4f472d4f57482d31 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.73.198.96.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.76.139.32.1|4x|4d41522d4944462d4c4f472d4f57482d31 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.40.172.158.77.225.160.1|4x|4d41522d4944462d4348414d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.6.101.160.1|4x|4d41522d4944462d4354524c2d524d2e696e742e6e757472617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.6.111.192.1|4x|4d41522d4944462d4354524c2d524d2e696e742e6e757472617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.7.225.128.1|4x|4d41522d4944462d4c313944 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.8.101.0.1|4x|4d41522d4944462d4c313944 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.8.178.160.1|4x|4d41522d4944462d4c313944 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.9.132.128.1|4x|4d41522d4944462d4c313944 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.15.230.128.1|4x|4d41522d4944462d4354524c2d524d2e696e742e6e757472617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.184.54.32.1|4x|4d41522d4944462d4354524c2d524d2e696e742e6e757472617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.88.139.28.184.116.64.1|4x|4d41522d4944462d4354524c2d524d2e696e742e6e757472617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.112.105.90.156.95.64.1|4x|4d41522d4944462d4348414d2d322e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.180.222.49.102.89.160.1|4x|4d41522d4d44462d41444d2d312e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.6.244.219.230.228.7.192.1|4x|4d41522d4944462d50532e696e742e6e75747269617369612e636f6d2e7068 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.7.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.0.60.16.104.153.160.1|4x|0ab73403 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.0.60.16.104.154.224.1|4x|0ab73404 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.0.223.29.42.246.64.1|4x|0ab73406 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.69.209.213.189.0.1|4x|0ab7340c +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.28.30.64.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.28.170.96.1|4x|0ab73402 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.28.247.160.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.9.128.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.160.64.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.164.0.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.164.64.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.167.160.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.205.32.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.212.160.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.230.64.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.8.123.135.29.230.96.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.95.147.160.1|4x|0ab73406 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.97.136.32.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.102.87.0.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.102.134.96.1|4x|0ab73409 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.103.175.0.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.225.4.192.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.24.249.53.225.42.224.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.28.209.224.173.249.0.1|4x|0ab73407 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.28.209.224.174.126.128.1|4x|0ab73403 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.36.54.218.80.92.0.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.36.54.218.80.101.224.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.36.54.218.80.103.64.1|4x|0ab73403 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.36.54.218.80.109.224.1|4x|0ab73403 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.52.22.96.1|4x|0ab73408 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.52.31.224.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.56.69.96.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.59.119.32.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.59.131.224.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.61.47.192.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.61.56.128.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.61.56.192.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.69.128.160.1|4x|0ab73408 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.73.197.128.1|4x|0ab73414 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.73.198.0.1|4x|0ab73408 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.73.198.96.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.76.139.32.1|4x|0ab73408 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.40.172.158.77.225.160.1|4x|0ab73412 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.6.101.160.1|4x|0ab73410 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.6.111.192.1|4x|0ab73410 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.7.225.128.1|4x|0ab73411 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.8.101.0.1|4x|0ab73411 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.8.178.160.1|4x|0ab73411 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.9.132.128.1|4x|0ab73411 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.15.230.128.1|4x|0ab73410 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.184.54.32.1|4x|0ab73410 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.88.139.28.184.116.64.1|4x|0ab73410 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.112.105.90.156.95.64.1|4x|0ab73413 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.180.222.49.102.89.160.1|4x|0ab73402 +1.3.6.1.4.1.9.9.623.1.3.1.1.8.244.219.230.228.7.192.1|4x|0ab7340b +1.3.6.1.4.1.9.9.623.1.3.1.1.9.0.60.16.104.153.160.1|4x|4769676162697445746865726e6574312f302f3136 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.0.60.16.104.154.224.1|4x|4769676162697445746865726e6574312f302f3132 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.0.223.29.42.246.64.1|4x|4769676162697445746865726e6574312f302f39 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.69.209.213.189.0.1|4x|4769676162697445746865726e6574312f302f3232 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.28.30.64.1|4x|4769676162697445746865726e6574312f302f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.28.170.96.1|4x|4769676162697445746865726e6574312f302f3233 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.28.247.160.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.9.128.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.160.64.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.164.0.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.164.64.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.167.160.1|4x|4769676162697445746865726e6574312f302f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.205.32.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.212.160.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.230.64.1|4x|4769676162697445746865726e6574312f302f36 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.8.123.135.29.230.96.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.95.147.160.1|4x|4769676162697445746865726e6574312f302f3139 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.97.136.32.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.102.87.0.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.102.134.96.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.103.175.0.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.225.4.192.1|4x|4769676162697445746865726e6574312f302f37 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.24.249.53.225.42.224.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.28.209.224.173.249.0.1|4x|4769676162697445746865726e6574312f302f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.28.209.224.174.126.128.1|4x|4769676162697445746865726e6574312f302f3132 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.36.54.218.80.92.0.1|4x|4769676162697445746865726e6574312f302f3133 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.36.54.218.80.101.224.1|4x|4769676162697445746865726e6574312f302f3134 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.36.54.218.80.103.64.1|4x|4769676162697445746865726e6574312f302f3231 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.36.54.218.80.109.224.1|4x|4769676162697445746865726e6574312f302f3232 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.52.22.96.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.52.31.224.1|4x|4769676162697445746865726e6574312f302f3132 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.56.69.96.1|4x|4769676162697445746865726e6574312f302f37 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.59.119.32.1|4x|4769676162697445746865726e6574312f302f37 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.59.131.224.1|4x|4769676162697445746865726e6574312f302f39 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.61.47.192.1|4x|4769676162697445746865726e6574312f302f38 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.61.56.128.1|4x|4769676162697445746865726e6574312f302f38 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.61.56.192.1|4x|4769676162697445746865726e6574312f302f36 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.69.128.160.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.73.197.128.1|4x|4769676162697445746865726e6574312f302f38 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.73.198.0.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.73.198.96.1|4x|4769676162697445746865726e6574312f302f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.76.139.32.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.40.172.158.77.225.160.1|4x|4769676162697445746865726e6574312f302f36 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.6.101.160.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.6.111.192.1|4x|4769676162697445746865726e6574312f302f35 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.7.225.128.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.8.101.0.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.8.178.160.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.9.132.128.1|4x|4769676162697445746865726e6574312f302f34 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.15.230.128.1|4x|4769676162697445746865726e6574312f302f31 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.184.54.32.1|4x|4769676162697445746865726e6574312f302f32 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.88.139.28.184.116.64.1|4x|4769676162697445746865726e6574312f302f33 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.112.105.90.156.95.64.1|4x|4769676162697445746865726e6574312f302f37 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.180.222.49.102.89.160.1|4x|4769676162697445746865726e6574322f302f3232 +1.3.6.1.4.1.9.9.623.1.3.1.1.9.244.219.230.228.7.192.1|4x|4769676162697445746865726e6574312f302f3139 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.0.60.16.104.153.160.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.0.60.16.104.154.224.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945382c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.0.223.29.42.246.64.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.69.209.213.189.0.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.28.30.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.28.170.96.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.28.247.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.9.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.160.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.164.0.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.164.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.167.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.205.32.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.212.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.230.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.8.123.135.29.230.96.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.95.147.160.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.97.136.32.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.102.87.0.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.102.134.96.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.103.175.0.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.225.4.192.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.24.249.53.225.42.224.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.28.209.224.173.249.0.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.28.209.224.174.126.128.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.36.54.218.80.92.0.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.36.54.218.80.101.224.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.36.54.218.80.103.64.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.36.54.218.80.109.224.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e322837294531302c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.52.22.96.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.52.31.224.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.56.69.96.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.59.119.32.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.59.131.224.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.61.47.192.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.61.56.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.61.56.192.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.69.128.160.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.73.197.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.73.198.0.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.73.198.96.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.76.139.32.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.40.172.158.77.225.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e352c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.6.101.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.6.111.192.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.7.225.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.8.101.0.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.8.178.160.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.9.132.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.15.230.128.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.184.54.32.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.88.139.28.184.116.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.112.105.90.156.95.64.1|4x|22436973636f20494f5320536f667477617265205b437570657274696e6f5d2c20436174616c797374204c332053776974636820536f6674776172652028434154394b5f4c4954455f494f535845292c2056657273696f6e2031372e392e34612c2052454c4541534520534f465457415245202866633329 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.180.222.49.102.89.160.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.10.244.219.230.228.7.192.1|4x|22436973636f20494f5320536f6674776172652c2043323936305820536f66747761726520284332393630582d554e4956455253414c4b392d4d292c2056657273696f6e2031352e3228372945392c2052454c4541534520534f465457415245202866633129 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.11.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.0.60.16.104.153.160.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.0.60.16.104.154.224.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.0.223.29.42.246.64.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.69.209.213.189.0.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.28.30.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.28.170.96.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.28.247.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.9.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.160.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.164.0.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.164.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.167.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.205.32.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.212.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.230.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.8.123.135.29.230.96.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.95.147.160.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.97.136.32.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.102.87.0.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.102.134.96.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.103.175.0.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.225.4.192.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.24.249.53.225.42.224.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.28.209.224.173.249.0.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.28.209.224.174.126.128.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.36.54.218.80.92.0.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.36.54.218.80.101.224.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.36.54.218.80.103.64.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.36.54.218.80.109.224.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.52.22.96.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.52.31.224.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.56.69.96.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.59.119.32.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.59.131.224.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.61.47.192.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.61.56.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.61.56.192.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.69.128.160.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.73.197.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.73.198.0.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.73.198.96.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.76.139.32.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.40.172.158.77.225.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.6.101.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.6.111.192.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.7.225.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.8.101.0.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.8.178.160.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.9.132.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.15.230.128.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.184.54.32.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.88.139.28.184.116.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.112.105.90.156.95.64.1|4x|636973636f2043393230304c2d3234502d3447 +1.3.6.1.4.1.9.9.623.1.3.1.1.12.180.222.49.102.89.160.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.12.244.219.230.228.7.192.1|4x|636973636f2057532d4332393630582d323450532d4c +1.3.6.1.4.1.9.9.623.1.3.1.1.13.0.60.16.104.153.160.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.0.60.16.104.154.224.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.0.223.29.42.246.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.69.209.213.189.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.28.30.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.28.170.96.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.28.247.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.9.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.160.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.164.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.164.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.167.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.205.32.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.212.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.230.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.8.123.135.29.230.96.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.95.147.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.97.136.32.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.102.87.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.102.134.96.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.103.175.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.225.4.192.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.24.249.53.225.42.224.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.28.209.224.173.249.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.28.209.224.174.126.128.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.36.54.218.80.92.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.36.54.218.80.101.224.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.36.54.218.80.103.64.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.36.54.218.80.109.224.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.52.22.96.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.52.31.224.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.56.69.96.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.59.119.32.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.59.131.224.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.61.47.192.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.61.56.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.61.56.192.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.69.128.160.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.73.197.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.73.198.0.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.73.198.96.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.76.139.32.1|4x|526f75746572205377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.40.172.158.77.225.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.6.101.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.6.111.192.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.7.225.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.8.101.0.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.8.178.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.9.132.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.15.230.128.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.184.54.32.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.88.139.28.184.116.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.112.105.90.156.95.64.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.180.222.49.102.89.160.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.13.244.219.230.228.7.192.1|4x|5377697463682049474d5020 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.0.60.16.104.153.160.1|66|1725291558 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.0.60.16.104.154.224.1|66|1725291558 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.0.223.29.42.246.64.1|66|1725291538 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.69.209.213.189.0.1|66|1725291547 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.28.30.64.1|66|1725291520 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.28.170.96.1|66|1725291519 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.28.247.160.1|66|1725291501 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.9.128.1|66|1725291512 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.160.64.1|66|1725291543 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.164.0.1|66|1725291508 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.164.64.1|66|1725291508 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.167.160.1|66|1725291552 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.205.32.1|66|1725291540 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.212.160.1|66|1725291552 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.230.64.1|66|1725291509 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.8.123.135.29.230.96.1|66|1725291549 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.95.147.160.1|66|1725291558 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.97.136.32.1|66|1725291507 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.102.87.0.1|66|1725291545 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.102.134.96.1|66|1725291511 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.103.175.0.1|66|1725291515 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.225.4.192.1|66|1725291536 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.24.249.53.225.42.224.1|66|1725291531 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.28.209.224.173.249.0.1|66|1725291508 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.28.209.224.174.126.128.1|66|1725291550 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.36.54.218.80.92.0.1|66|1725291557 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.36.54.218.80.101.224.1|66|1725291528 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.36.54.218.80.103.64.1|66|1725291532 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.36.54.218.80.109.224.1|66|1725291514 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.52.22.96.1|66|1725291548 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.52.31.224.1|66|1725291526 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.56.69.96.1|66|1725291544 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.59.119.32.1|66|1725291517 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.59.131.224.1|66|1725291549 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.61.47.192.1|66|1725291542 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.61.56.128.1|66|1725291509 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.61.56.192.1|66|1725291514 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.69.128.160.1|66|1725291538 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.73.197.128.1|66|1725291557 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.73.198.0.1|66|1725291541 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.73.198.96.1|66|1725291548 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.76.139.32.1|66|1725291539 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.40.172.158.77.225.160.1|66|1725291525 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.6.101.160.1|66|1725291556 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.6.111.192.1|66|1725291554 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.7.225.128.1|66|1725291508 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.8.101.0.1|66|1725291540 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.8.178.160.1|66|1725291547 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.9.132.128.1|66|1725291516 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.15.230.128.1|66|1725291557 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.184.54.32.1|66|1725291511 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.88.139.28.184.116.64.1|66|1725291506 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.112.105.90.156.95.64.1|66|1725291552 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.180.222.49.102.89.160.1|66|1725291504 +1.3.6.1.4.1.9.9.623.1.3.1.1.14.244.219.230.228.7.192.1|66|1725291558 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.15.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.0.223.29.42.246.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.28.30.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.28.247.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.9.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.160.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.164.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.164.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.167.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.205.32.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.212.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.230.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.8.123.135.29.230.96.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.95.147.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.97.136.32.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.102.87.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.102.134.96.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.103.175.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.225.4.192.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.24.249.53.225.42.224.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.36.54.218.80.92.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.36.54.218.80.101.224.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.59.119.32.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.59.131.224.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.61.56.192.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.73.197.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.73.198.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.73.198.96.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.76.139.32.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.40.172.158.77.225.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.6.101.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.6.111.192.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.7.225.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.8.101.0.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.9.132.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.15.230.128.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.184.54.32.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.88.139.28.184.116.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.112.105.90.156.95.64.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.180.222.49.102.89.160.1|2|4 +1.3.6.1.4.1.9.9.623.1.3.1.1.16.244.219.230.228.7.192.1|2|4 +1.3.6.1.4.1.9.9.639.1.2.7.0|2|2 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.1|66|0 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.2|66|0 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.3|66|0 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.4|66|0 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.5|66|0 +1.3.6.1.4.1.9.9.645.1.2.1.1.1.6|66|0 +1.3.6.1.4.1.9.9.656.1.1.1.0|66|100 +1.3.6.1.4.1.9.9.656.1.1.3.0|2|1 +1.3.6.1.4.1.9.9.656.1.1.4.0|2|0 +1.3.6.1.4.1.9.9.656.1.1.5.0|2|0 +1.3.6.1.4.1.9.9.656.1.5.1.0|2|2 +1.3.6.1.4.1.9.9.657.1.1.1.2.1|2|1 +1.3.6.1.4.1.9.9.692.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.2.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.4.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.6.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.8.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.10.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.12.0|67|0 +1.3.6.1.4.1.9.9.692.1.2.14.0|67|0 +1.3.6.1.4.1.9.9.692.1.3.2.0|67|0 +1.3.6.1.4.1.9.9.692.1.4.2.0|67|0 +1.3.6.1.4.1.9.9.692.1.5.2.0|67|0 +1.3.6.1.4.1.9.9.692.1.5.4.0|67|0 +1.3.6.1.4.1.9.9.692.1.6.1.0|66|500 +1.3.6.1.4.1.9.9.692.1.6.2.0|66|0 +1.3.6.1.4.1.9.9.692.1.7.1.0|2|2 +1.3.6.1.4.1.9.9.697.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.699.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.703.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.1|4x|4d676d742d696e7466 +1.3.6.1.4.1.9.9.711.1.1.1.1.3.1|66|0 +1.3.6.1.4.1.9.9.711.1.1.1.1.4.1|2|2 +1.3.6.1.4.1.9.9.711.1.1.1.1.5.1|4x|00 +1.3.6.1.4.1.9.9.711.1.1.1.1.6.1|2|3 +1.3.6.1.4.1.9.9.711.1.1.1.1.7.1|2|1 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.1.7|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.3.1.7|66|0 +1.3.6.1.4.1.9.9.711.1.2.1.1.4.1.7|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.5.1.7|2|1 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.1|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.2|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.3|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.4|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.5|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.6|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.7|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.8|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.9|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.10|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.11|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.1.12|2|2 +1.3.6.1.4.1.9.9.711.1.2.2.1.2.1|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.2|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.3|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.4|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.5|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.6|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.7|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.8|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.9|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.10|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.11|4| +1.3.6.1.4.1.9.9.711.1.2.2.1.2.12|4| +1.3.6.1.4.1.9.9.711.1.3.1.0|2|2 +1.3.6.1.4.1.9.9.711.1.3.2.0|2|2 +1.3.6.1.4.1.9.9.715.1.1.1.1.1.3026|2|4 +1.3.6.1.4.1.9.9.715.1.1.1.1.2.3026|2|5 +1.3.6.1.4.1.9.9.715.1.1.1.1.3.3026|65|1 +1.3.6.1.4.1.9.9.715.1.1.1.1.4.3026|4x|07e8070c091a1c00 +1.3.6.1.4.1.9.9.715.1.1.2.0|2|2 +1.3.6.1.4.1.9.9.715.1.1.3.0|2|2 +1.3.6.1.4.1.9.9.715.1.1.4.0|2|2 +1.3.6.1.4.1.9.9.715.1.1.5.0|2|2 +1.3.6.1.4.1.9.9.715.1.1.6.1.2.3026.1|70|33 +1.3.6.1.4.1.9.9.715.1.1.6.1.2.3026.2|70|47 +1.3.6.1.4.1.9.9.715.1.1.6.1.2.3026.3|70|42 +1.3.6.1.4.1.9.9.715.1.1.6.1.2.3026.4|70|40 +1.3.6.1.4.1.9.9.715.1.1.6.1.3.3026.1|70|64296 +1.3.6.1.4.1.9.9.715.1.1.6.1.3.3026.2|70|81840 +1.3.6.1.4.1.9.9.715.1.1.6.1.3.3026.3|70|77632 +1.3.6.1.4.1.9.9.715.1.1.6.1.3.3026.4|70|77944 +1.3.6.1.4.1.9.9.715.1.1.6.1.4.3026.1|70|520 +1.3.6.1.4.1.9.9.715.1.1.6.1.4.3026.2|70|400 +1.3.6.1.4.1.9.9.715.1.1.6.1.4.3026.3|70|504 +1.3.6.1.4.1.9.9.715.1.1.6.1.4.3026.4|70|600 +1.3.6.1.4.1.9.9.715.1.1.6.1.5.3026.1|70|1780640 +1.3.6.1.4.1.9.9.715.1.1.6.1.5.3026.2|70|1287640 +1.3.6.1.4.1.9.9.715.1.1.6.1.5.3026.3|70|2109544 +1.3.6.1.4.1.9.9.715.1.1.6.1.5.3026.4|70|3743352 +1.3.6.1.4.1.9.9.715.1.1.6.1.6.3026.1|70|553 +1.3.6.1.4.1.9.9.715.1.1.6.1.6.3026.2|70|447 +1.3.6.1.4.1.9.9.715.1.1.6.1.6.3026.3|70|546 +1.3.6.1.4.1.9.9.715.1.1.6.1.6.3026.4|70|640 +1.3.6.1.4.1.9.9.715.1.1.6.1.7.3026.1|70|1844936 +1.3.6.1.4.1.9.9.715.1.1.6.1.7.3026.2|70|1369480 +1.3.6.1.4.1.9.9.715.1.1.6.1.7.3026.3|70|2187176 +1.3.6.1.4.1.9.9.715.1.1.6.1.7.3026.4|70|3821296 +1.3.6.1.4.1.9.9.715.1.1.6.1.8.3026.1|70|12 +1.3.6.1.4.1.9.9.715.1.1.6.1.8.3026.2|70|10 +1.3.6.1.4.1.9.9.715.1.1.6.1.8.3026.3|70|10 +1.3.6.1.4.1.9.9.715.1.1.6.1.8.3026.4|70|10 +1.3.6.1.4.1.9.9.715.1.1.6.1.9.3026.1|70|11536 +1.3.6.1.4.1.9.9.715.1.1.6.1.9.3026.2|70|8784 +1.3.6.1.4.1.9.9.715.1.1.6.1.9.3026.3|70|13504 +1.3.6.1.4.1.9.9.715.1.1.6.1.9.3026.4|70|11376 +1.3.6.1.4.1.9.9.715.1.1.6.1.10.3026.1|70|469 +1.3.6.1.4.1.9.9.715.1.1.6.1.10.3026.2|70|362 +1.3.6.1.4.1.9.9.715.1.1.6.1.10.3026.3|70|464 +1.3.6.1.4.1.9.9.715.1.1.6.1.10.3026.4|70|559 +1.3.6.1.4.1.9.9.715.1.1.6.1.11.3026.1|70|1785000 +1.3.6.1.4.1.9.9.715.1.1.6.1.11.3026.2|70|1290248 +1.3.6.1.4.1.9.9.715.1.1.6.1.11.3026.3|70|2126136 +1.3.6.1.4.1.9.9.715.1.1.6.1.11.3026.4|70|3829856 +1.3.6.1.4.1.9.9.715.1.1.6.1.12.3026.1|70|481 +1.3.6.1.4.1.9.9.715.1.1.6.1.12.3026.2|70|372 +1.3.6.1.4.1.9.9.715.1.1.6.1.12.3026.3|70|474 +1.3.6.1.4.1.9.9.715.1.1.6.1.12.3026.4|70|569 +1.3.6.1.4.1.9.9.715.1.1.6.1.13.3026.1|70|1796536 +1.3.6.1.4.1.9.9.715.1.1.6.1.13.3026.2|70|1299032 +1.3.6.1.4.1.9.9.715.1.1.6.1.13.3026.3|70|2139640 +1.3.6.1.4.1.9.9.715.1.1.6.1.13.3026.4|70|3841232 +1.3.6.1.4.1.9.9.715.1.1.6.1.14.3026.1|66|0 +1.3.6.1.4.1.9.9.715.1.1.6.1.14.3026.2|66|0 +1.3.6.1.4.1.9.9.715.1.1.6.1.14.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.6.1.14.3026.4|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.2.3026.1|2|1879048192 +1.3.6.1.4.1.9.9.715.1.1.7.1.2.3026.2|2|2097152 +1.3.6.1.4.1.9.9.715.1.1.7.1.2.3026.3|2|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.3.3026.1|2|280443904 +1.3.6.1.4.1.9.9.715.1.1.7.1.3.3026.2|2|423936 +1.3.6.1.4.1.9.9.715.1.1.7.1.3.3026.3|2|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.4.3026.1|2|1598607360 +1.3.6.1.4.1.9.9.715.1.1.7.1.4.3026.2|2|1673216 +1.3.6.1.4.1.9.9.715.1.1.7.1.4.3026.3|2|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.5.3026.1|66|1598141440 +1.3.6.1.4.1.9.9.715.1.1.7.1.5.3026.2|66|1673216 +1.3.6.1.4.1.9.9.715.1.1.7.1.5.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.6.3026.1|66|85 +1.3.6.1.4.1.9.9.715.1.1.7.1.6.3026.2|66|85 +1.3.6.1.4.1.9.9.715.1.1.7.1.6.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.7.3026.1|66|80 +1.3.6.1.4.1.9.9.715.1.1.7.1.7.3026.2|66|80 +1.3.6.1.4.1.9.9.715.1.1.7.1.7.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.8.3026.1|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.8.3026.2|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.8.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.9.3026.1|70|1879048192 +1.3.6.1.4.1.9.9.715.1.1.7.1.9.3026.2|70|2097152 +1.3.6.1.4.1.9.9.715.1.1.7.1.9.3026.3|70|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.10.3026.1|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.10.3026.2|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.10.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.11.3026.1|70|280440832 +1.3.6.1.4.1.9.9.715.1.1.7.1.11.3026.2|70|423936 +1.3.6.1.4.1.9.9.715.1.1.7.1.11.3026.3|70|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.12.3026.1|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.12.3026.2|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.12.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.13.3026.1|70|1598607360 +1.3.6.1.4.1.9.9.715.1.1.7.1.13.3026.2|70|1673216 +1.3.6.1.4.1.9.9.715.1.1.7.1.13.3026.3|70|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.14.3026.1|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.14.3026.2|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.14.3026.3|66|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.15.3026.1|70|1598141440 +1.3.6.1.4.1.9.9.715.1.1.7.1.15.3026.2|70|1673216 +1.3.6.1.4.1.9.9.715.1.1.7.1.15.3026.3|70|0 +1.3.6.1.4.1.9.9.715.1.1.7.1.16.3026.1|2|4 +1.3.6.1.4.1.9.9.715.1.1.7.1.16.3026.2|2|4 +1.3.6.1.4.1.9.9.715.1.1.7.1.16.3026.3|2|4 +1.3.6.1.4.1.9.9.715.1.1.7.1.17.3026.1|2|14 +1.3.6.1.4.1.9.9.715.1.1.7.1.17.3026.2|2|20 +1.3.6.1.4.1.9.9.715.1.1.7.1.17.3026.3|2|-2147483648 +1.3.6.1.4.1.9.9.715.1.1.8.1.1.3026|70|5000000000 +1.3.6.1.4.1.9.9.715.1.1.8.1.2.3026|2|1 +1.3.6.1.4.1.9.9.715.1.1.8.1.3.3026|2|300 +1.3.6.1.4.1.9.9.715.1.1.8.1.4.3026|2|95 +1.3.6.1.4.1.9.9.715.1.1.8.1.5.3026|70|2859028 +1.3.6.1.4.1.9.9.715.1.2.1.0|2|2 +1.3.6.1.4.1.9.9.715.1.2.4.0|2|2 +1.3.6.1.4.1.9.9.720.1.1.1.0|2|1 +1.3.6.1.4.1.9.9.720.1.1.2.0|2|1 +1.3.6.1.4.1.9.9.720.1.1.3.0|4| +1.3.6.1.4.1.9.9.720.1.1.4.0|2|5 +1.3.6.1.4.1.9.9.720.1.1.5.0|4|00071A150754181E1F +1.3.6.1.4.1.9.9.720.1.1.6.0|2|1 +1.3.6.1.4.1.9.9.720.1.1.7.0|4x|0ab73464 +1.3.6.1.4.1.9.9.720.1.1.8.0|66|120 +1.3.6.1.4.1.9.9.720.1.1.9.0|66|120 +1.3.6.1.4.1.9.9.720.1.1.10.0|2|2 +1.3.6.1.4.1.9.9.720.1.1.11.0|66|0 +1.3.6.1.4.1.9.9.720.1.1.12.0|66|0 +1.3.6.1.4.1.9.9.720.1.1.13.0|66|0 +1.3.6.1.4.1.9.9.720.1.1.14.0|2|0 +1.3.6.1.4.1.9.9.720.1.1.15.0|2|0 +1.3.6.1.4.1.9.9.720.1.1.16.0|4| +1.3.6.1.4.1.9.9.720.1.1.17.0|66|179778660 +1.3.6.1.4.1.9.9.720.1.1.18.0|66|120 +1.3.6.1.4.1.9.9.720.1.1.19.0|66|90 +1.3.6.1.4.1.9.9.720.1.1.20.0|66|180 +1.3.6.1.4.1.9.9.720.1.1.21.0|2|6 +1.3.6.1.4.1.9.9.720.1.1.22.0|4| +1.3.6.1.4.1.9.9.720.1.1.23.0|4| +1.3.6.1.4.1.9.9.720.1.2.1.1.4.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.4.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.5.0.1.4.10.183.37.114|4x|00000000 +1.3.6.1.4.1.9.9.720.1.2.1.1.5.0.1.4.10.183.37.115|4x|00000000 +1.3.6.1.4.1.9.9.720.1.2.1.1.6.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.6.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.7.0.1.4.10.183.37.114|4x|0ab73464 +1.3.6.1.4.1.9.9.720.1.2.1.1.7.0.1.4.10.183.37.115|4x|0ab73464 +1.3.6.1.4.1.9.9.720.1.2.1.1.8.0.1.4.10.183.37.114|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.8.0.1.4.10.183.37.115|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.9.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.9.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.10.0.1.4.10.183.37.114|4| +1.3.6.1.4.1.9.9.720.1.2.1.1.10.0.1.4.10.183.37.115|4| +1.3.6.1.4.1.9.9.720.1.2.1.1.11.0.1.4.10.183.37.114|2|5 +1.3.6.1.4.1.9.9.720.1.2.1.1.11.0.1.4.10.183.37.115|2|5 +1.3.6.1.4.1.9.9.720.1.2.1.1.12.0.1.4.10.183.37.114|4|00071A150754181E1F +1.3.6.1.4.1.9.9.720.1.2.1.1.12.0.1.4.10.183.37.115|4|00071A150754181E1F +1.3.6.1.4.1.9.9.720.1.2.1.1.13.0.1.4.10.183.37.114|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.13.0.1.4.10.183.37.115|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.14.0.1.4.10.183.37.114|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.14.0.1.4.10.183.37.115|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.15.0.1.4.10.183.37.114|66|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.15.0.1.4.10.183.37.115|66|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.16.0.1.4.10.183.37.114|66|2676128 +1.3.6.1.4.1.9.9.720.1.2.1.1.16.0.1.4.10.183.37.115|66|2593530 +1.3.6.1.4.1.9.9.720.1.2.1.1.17.0.1.4.10.183.37.114|2|3 +1.3.6.1.4.1.9.9.720.1.2.1.1.17.0.1.4.10.183.37.115|2|3 +1.3.6.1.4.1.9.9.720.1.2.1.1.18.0.1.4.10.183.37.114|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.18.0.1.4.10.183.37.115|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.19.0.1.4.10.183.37.114|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.19.0.1.4.10.183.37.115|2|2 +1.3.6.1.4.1.9.9.720.1.2.1.1.20.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.20.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.21.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.21.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.22.0.1.4.10.183.37.114|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.22.0.1.4.10.183.37.115|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.23.0.1.4.10.183.37.114|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.23.0.1.4.10.183.37.115|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.24.0.1.4.10.183.37.114|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.24.0.1.4.10.183.37.115|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.25.0.1.4.10.183.37.114|66|120 +1.3.6.1.4.1.9.9.720.1.2.1.1.25.0.1.4.10.183.37.115|66|120 +1.3.6.1.4.1.9.9.720.1.2.1.1.26.0.1.4.10.183.37.114|4x|e0 +1.3.6.1.4.1.9.9.720.1.2.1.1.26.0.1.4.10.183.37.115|4x|e0 +1.3.6.1.4.1.9.9.720.1.2.1.1.27.0.1.4.10.183.37.114|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.27.0.1.4.10.183.37.115|2|1 +1.3.6.1.4.1.9.9.720.1.2.1.1.28.0.1.4.10.183.37.114|66|0 +1.3.6.1.4.1.9.9.720.1.2.1.1.28.0.1.4.10.183.37.115|66|0 +1.3.6.1.4.1.9.9.720.1.4.1.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.2.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.3.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.4.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.5.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.6.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.7.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.8.0|2|2 +1.3.6.1.4.1.9.9.720.1.4.9.0|2|2 +1.3.6.1.4.1.9.9.736.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.736.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.736.1.1.3.0|66|0 +1.3.6.1.4.1.9.9.736.1.1.4.0|65|13763 +1.3.6.1.4.1.9.9.736.1.1.5.0|2|0 +1.3.6.1.4.1.9.9.736.1.1.6.0|66|1812 +1.3.6.1.4.1.9.9.736.1.1.7.0|66|1813 +1.3.6.1.4.1.9.9.736.1.1.8.0|66|0 +1.3.6.1.4.1.9.9.736.1.1.9.0|66|0 +1.3.6.1.4.1.9.9.736.1.1.10.0|65|53510 +1.3.6.1.4.1.9.9.736.1.2.1.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.2.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.3.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.4.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.5.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.6.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.7.0|2|0 +1.3.6.1.4.1.9.9.736.1.2.8.0|2|0 +1.3.6.1.4.1.9.9.736.1.2.9.0|66|0 +1.3.6.1.4.1.9.9.736.1.2.10.0|65|741 +1.3.6.1.4.1.9.9.736.1.2.11.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.12.0|65|0 +1.3.6.1.4.1.9.9.736.1.2.13.0|66|0 +1.3.6.1.4.1.9.9.736.1.3.1.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.2.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.3.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.4.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.5.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.6.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.7.0|2|0 +1.3.6.1.4.1.9.9.736.1.3.8.0|2|0 +1.3.6.1.4.1.9.9.736.1.3.9.0|66|0 +1.3.6.1.4.1.9.9.736.1.3.10.0|65|96587 +1.3.6.1.4.1.9.9.736.1.3.11.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.12.0|65|0 +1.3.6.1.4.1.9.9.736.1.3.13.0|66|0 +1.3.6.1.4.1.9.9.756.1.6.1.0|2|2 +1.3.6.1.4.1.9.9.756.1.6.2.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.1.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.2.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.3.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.4.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.5.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.6.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.7.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.8.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.9.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.10.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.11.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.12.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.13.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.14.0|2|2 +1.3.6.1.4.1.9.9.759.1.4.15.0|2|2 +1.3.6.1.4.1.9.9.760.1.1.2.1.2.1|66|0 +1.3.6.1.4.1.9.9.760.1.1.2.1.2.2|66|0 +1.3.6.1.4.1.9.9.760.1.1.2.1.2.3|66|0 +1.3.6.1.4.1.9.9.760.1.1.2.1.2.4|66|0 +1.3.6.1.4.1.9.9.760.1.1.4.0|2|1 +1.3.6.1.4.1.9.9.761.1.1.1.1.2.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.3.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.4.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.5.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.6.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.7.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.8.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.1.1.9.1|66|300 +1.3.6.1.4.1.9.9.761.1.1.1.1.10.1|66|300 +1.3.6.1.4.1.9.9.761.1.1.1.1.11.1|66|0 +1.3.6.1.4.1.9.9.761.1.1.1.1.12.1|66|0 +1.3.6.1.4.1.9.9.761.1.1.1.1.13.1|66|0 +1.3.6.1.4.1.9.9.761.1.1.3.1.2.1|4|Internal +1.3.6.1.4.1.9.9.761.1.1.3.1.3.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.3.1.4.1|66|251 +1.3.6.1.4.1.9.9.761.1.1.3.1.5.1|2|1 +1.3.6.1.4.1.9.9.761.1.1.3.1.6.1|2|1 +1.3.6.1.4.1.9.9.761.1.1.3.1.7.1|2|1 +1.3.6.1.4.1.9.9.761.1.1.3.1.8.1|2|1 +1.3.6.1.4.1.9.9.761.1.1.3.1.9.1|2|1 +1.3.6.1.4.1.9.9.761.1.1.3.1.10.1|2|25 +1.3.6.1.4.1.9.9.761.1.1.3.1.11.1|2|25 +1.3.6.1.4.1.9.9.761.1.1.3.1.12.1|66|0 +1.3.6.1.4.1.9.9.761.1.1.3.1.13.1|66|0 +1.3.6.1.4.1.9.9.761.1.1.3.1.14.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.3.1.15.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.3.1.16.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.3.1.17.1|4x|00 +1.3.6.1.4.1.9.9.761.1.1.3.1.18.1|2|2 +1.3.6.1.4.1.9.9.761.1.1.3.1.19.1|2|2 +1.3.6.1.4.1.9.9.764.0.1.0|2|2 +1.3.6.1.4.1.9.9.764.0.2.0|4| +1.3.6.1.4.1.9.9.764.0.3.0|66|0 +1.3.6.1.4.1.9.9.770.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.771.1.1.2.0|67|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.2.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|4x|64656661756c7420726670726f66696c6520666f72203647487a20726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|70726520636f6e66696775726564204c6f7720436c69656e742044656e7369747920726670726f66696c6520666f722035676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|70726520636f6e66696775726564204869676820436c69656e742044656e7369747920726670726f66696c6520666f722035676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|70726520636f6e66696775726564204c6f7720436c69656e742044656e7369747920726670726f66696c6520666f7220322e34676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|70726520636f6e66696775726564204869676820436c69656e742044656e7369747920726670726f66696c6520666f7220322e34676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|70726520636f6e66696775726564205479706963616c2044656e7369747920726670726f66696c6520666f722035676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.2.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|70726520636f6e66696775726564205479706963616c20436c69656e742044656e7369747920726670726f66696c6520666f7220322e34676820726164696f +1.3.6.1.4.1.9.9.778.1.1.2.1.3.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-10 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-10 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|7 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-10 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|7 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-10 +1.3.6.1.4.1.9.9.778.1.1.2.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-10 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.4.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|30 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-60 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-65 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-65 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.5.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.6.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-67 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.7.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.8.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.9.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.10.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.11.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.12.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.13.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.14.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.15.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.16.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.17.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.18.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.19.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.20.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.21.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.22.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.23.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.24.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.25.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|200 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.26.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.27.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|60 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.28.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.29.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.30.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-90 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-90 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.31.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-90 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-90 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.32.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.33.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|3 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.34.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|25 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.35.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.36.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.37.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|12 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.38.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|10 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.39.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-70 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.40.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|80 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.41.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.42.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|4| +1.3.6.1.4.1.9.9.778.1.1.2.1.43.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|312c362c3131 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|312c362c3131 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c313631 +1.3.6.1.4.1.9.9.778.1.1.2.1.43.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|312c362c3131 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.44.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.45.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.46.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.47.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-80 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.48.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|4| +1.3.6.1.4.1.9.9.778.1.1.2.1.49.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|3132302c3132342c3132382c313635 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|3132302c3132342c3132382c313635 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|322c332c342c352c372c382c392c31302c31322c3133 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|322c332c342c352c372c382c392c31302c31322c3133 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|3132302c3132342c3132382c313635 +1.3.6.1.4.1.9.9.778.1.1.2.1.49.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|322c332c342c352c372c382c392c31302c31322c3133 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.50.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.51.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.52.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|1 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.53.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.54.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|5 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.55.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-85 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.56.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.57.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.58.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.59.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|0 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.60.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|66|20 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.62.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|4x|64656661756c742d6d756c74692d62737369642d70726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.63.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.64.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|2 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.65.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-82 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.23.100.101.102.97.117.108.116.45.114.102.45.112.114.111.102.105.108.101.45.54.103.104.122|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.2.1.66.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104|2|-62 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.25.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.26.76.111.119.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.27.72.105.103.104.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.29.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.53.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.0|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.1|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.2|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.3|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.4|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.5|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.6|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.7|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.8|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.9|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.10|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.11|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.12|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.13|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.14|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.15|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.16|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.17|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.18|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.19|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.20|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.21|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.22|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.23|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.24|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.25|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.26|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.27|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.28|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.29|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.30|2|1 +1.3.6.1.4.1.9.9.778.1.1.3.1.3.30.84.121.112.105.99.97.108.95.67.108.105.101.110.116.95.68.101.110.115.105.116.121.95.114.102.95.50.52.103.104.31|2|1 +1.3.6.1.4.1.9.9.778.1.1.7.1.2.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|4x|44656661756c74206d756c74692062737369642070726f66696c65 +1.3.6.1.4.1.9.9.778.1.1.7.1.3.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.778.1.1.7.1.4.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.778.1.1.7.1.5.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.778.1.1.7.1.6.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.778.1.1.7.1.7.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.778.1.1.7.1.8.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.778.1.1.7.1.9.27.100.101.102.97.117.108.116.45.109.117.108.116.105.45.98.115.115.105.100.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.786.1.2.1.1.4.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.5.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.6.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.7.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.8.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.9.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.10.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.11.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.12.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.13.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.16.1.1.1|70|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.17.1.1.1|70|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.20.1.1.1|70|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.21.1.1.1|70|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.22.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.23.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.24.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.25.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.26.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.27.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.28.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.29.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.30.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.31.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.32.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.33.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.34.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.2.1.1.35.1.1.1|66|0 +1.3.6.1.4.1.9.9.786.1.3.1.0|2|1 +1.3.6.1.4.1.9.9.786.1.3.2.0|4x|9e0000 +1.3.6.1.4.1.9.9.786.1.3.3.0|66|1 +1.3.6.1.4.1.9.9.786.1.3.4.0|66|1024 +1.3.6.1.4.1.9.9.786.1.3.5.0|66|300 +1.3.6.1.4.1.9.9.786.1.3.6.0|66|0 +1.3.6.1.4.1.9.9.831.0.1.0|66|0 +1.3.6.1.4.1.9.9.831.0.2.0|4x|5049443a43393830302d4c2d462d4b392c534e3a46434c3237303530314c59 +1.3.6.1.4.1.9.9.831.0.3.0|4x|352e352e32395f72656c2f313134 +1.3.6.1.4.1.9.9.831.0.4.0|2|1 +1.3.6.1.4.1.9.9.831.0.5.1.1.2.1|66|55 +1.3.6.1.4.1.9.9.831.0.5.1.1.2.2|66|55 +1.3.6.1.4.1.9.9.831.0.5.1.1.3.1|4x|444e415f4e57535441434b5f45 +1.3.6.1.4.1.9.9.831.0.5.1.1.3.2|4x|4149522d444e412d45 +1.3.6.1.4.1.9.9.831.0.5.1.1.4.1|4x|312e30 +1.3.6.1.4.1.9.9.831.0.5.1.1.4.2|4x|312e30 +1.3.6.1.4.1.9.9.831.0.5.1.1.5.1|2|15 +1.3.6.1.4.1.9.9.831.0.5.1.1.5.2|2|15 +1.3.6.1.4.1.9.9.831.0.5.1.1.6.1|4x|6169722d6e6574776f726b2d657373656e7469616c73 +1.3.6.1.4.1.9.9.831.0.5.1.1.6.2|4x|6169722d646e612d657373656e7469616c73 +1.3.6.1.4.1.9.9.831.0.5.1.1.7.1|4x|6169722d6e6574776f726b2d657373656e7469616c73 +1.3.6.1.4.1.9.9.831.0.5.1.1.7.2|4x|6169722d646e612d657373656e7469616c73 +1.3.6.1.4.1.9.9.831.0.5.1.1.8.1|2|1 +1.3.6.1.4.1.9.9.831.0.5.1.1.8.2|2|1 +1.3.6.1.4.1.9.9.831.0.8.1.0|2|2 +1.3.6.1.4.1.9.9.831.0.8.2.0|2|2 +1.3.6.1.4.1.9.9.831.0.9.1.0|2|0 +1.3.6.1.4.1.9.9.831.0.9.2.0|4x|4465526567697374726174696f6e206661696c757265206d657373616765206973206e6f74207065727369737465642e +1.3.6.1.4.1.9.9.831.0.10.1.0|4x|5574696c697479206661696c757265206d6573736167657320617265206e6f74207065727369737465642e +1.3.6.1.4.1.9.9.831.0.11.1.0|2|0 +1.3.6.1.4.1.9.9.831.0.11.2.0|4x|4578706f7274206661696c757265206d657373616765206973206e6f74207065727369737465642e +1.3.6.1.4.1.9.9.831.0.12.1.0|66|0 +1.3.6.1.4.1.9.9.831.0.12.2.0|66|0 +1.3.6.1.4.1.9.9.831.0.13.1.0|4x|506f6c696379204d6f6465206661696c757265206d6573736167657320617265206e6f74207065727369737465642e +1.3.6.1.4.1.9.9.831.0.13.2.0|2|0 +1.3.6.1.4.1.9.9.843.1.3.1.0|2|0 +1.3.6.1.4.1.9.9.843.1.3.2.0|65|0 +1.3.6.1.4.1.9.9.843.1.3.3.0|2|0 +1.3.6.1.4.1.9.9.843.1.3.4.0|2|0 +1.3.6.1.4.1.9.9.843.1.6.1.0|4| +1.3.6.1.4.1.9.9.843.1.6.2.0|2|1 +1.3.6.1.4.1.9.9.843.1.6.3.0|4x|00000000 +1.3.6.1.4.1.9.9.843.1.6.4.0|4x|00000000 +1.3.6.1.4.1.9.9.843.1.6.5.0|2|1 +1.3.6.1.4.1.9.9.843.1.6.6.0|4x|00000000 +1.3.6.1.4.1.9.9.843.1.6.7.0|66|100 +1.3.6.1.4.1.9.9.843.1.6.8.0|66|1 +1.3.6.1.4.1.9.9.843.1.6.9.0|2|1 +1.3.6.1.4.1.9.9.843.1.6.10.0|66|5 +1.3.6.1.4.1.9.9.843.1.7.1.0|66|2 +1.3.6.1.4.1.9.9.843.1.7.2.0|4| +1.3.6.1.4.1.9.9.843.1.7.3.0|66|0 +1.3.6.1.4.1.9.9.843.1.7.4.0|2|0 +1.3.6.1.4.1.9.9.843.1.7.5.0|4| +1.3.6.1.4.1.9.9.843.1.7.6.0|66|0 +1.3.6.1.4.1.9.9.843.1.7.7.0|2|0 +1.3.6.1.4.1.9.9.843.1.7.8.0|4| +1.3.6.1.4.1.9.9.843.1.7.9.0|2|1 +1.3.6.1.4.1.9.9.843.1.7.10.0|66|8 +1.3.6.1.4.1.9.9.846.1.1.1.5.0|2|2 +1.3.6.1.4.1.9.9.846.1.1.1.6.0|66|3 +1.3.6.1.4.1.9.9.846.1.1.1.7.0|66|10 +1.3.6.1.4.1.9.9.846.1.1.1.8.0|66|48 +1.3.6.1.4.1.9.9.846.1.1.1.12.0|2|1 +1.3.6.1.4.1.9.9.846.1.1.1.13.0|4x|00000000 +1.3.6.1.4.1.9.9.846.1.1.1.14.0|4|default +1.3.6.1.4.1.9.9.846.1.1.1.19.0|2|2 +1.3.6.1.4.1.9.9.846.1.1.1.20.0|4x|00000000000000000000000000000000 +1.3.6.1.4.1.9.9.846.1.1.1.21.0|2|2 +1.3.6.1.4.1.9.9.846.1.1.2.11.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.0.60.16.104.153.160|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.0.60.16.104.154.224|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.0.223.29.42.246.64|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.69.209.213.189.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.28.30.64|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.28.170.96|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.28.247.160|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.9.128|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.160.64|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.164.0|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.164.64|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.167.160|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.205.32|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.212.160|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.230.64|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.8.123.135.29.230.96|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.95.147.160|4x|4d41522d5453442d4f4646432d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.97.136.32|4x|4d41522d43484d502d30382d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.102.87.0|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.102.134.96|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.103.175.0|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.225.4.192|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.24.249.53.225.42.224|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.28.209.224.173.249.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.28.209.224.174.126.128|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.36.54.218.80.92.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.36.54.218.80.101.224|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.36.54.218.80.103.64|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.36.54.218.80.109.224|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.52.22.96|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.52.31.224|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.56.69.96|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.59.119.32|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.59.131.224|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.61.47.192|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.61.56.128|4x|4d41525f43484d505f30315f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.61.56.192|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.69.128.160|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.73.197.128|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.73.198.0|4x|4d41525f4c4f475f4f57485f41505f34 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.73.198.96|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.76.139.32|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.40.172.158.77.225.160|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.6.101.160|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.6.111.192|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.7.225.128|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.8.101.0|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.8.178.160|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.9.132.128|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.15.230.128|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.184.54.32|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.88.139.28.184.116.64|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.112.105.90.156.95.64|4x|4d41525f43484d505f30355f4150 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.180.222.49.102.89.160|4x|4d41525f41444d494e5f4255494c44494e47 +1.3.6.1.4.1.9.9.846.1.2.13.1.2.244.219.230.228.7.192|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.3.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.0.60.16.104.153.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.0.60.16.104.154.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.0.223.29.42.246.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.69.209.213.189.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.28.30.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.28.170.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.28.247.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.9.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.160.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.164.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.164.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.167.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.205.32|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.212.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.230.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.8.123.135.29.230.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.95.147.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.97.136.32|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.102.87.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.102.134.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.103.175.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.225.4.192|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.24.249.53.225.42.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.28.209.224.173.249.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.28.209.224.174.126.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.36.54.218.80.92.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.36.54.218.80.101.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.36.54.218.80.103.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.36.54.218.80.109.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.52.22.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.52.31.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.56.69.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.59.119.32|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.59.131.224|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.61.47.192|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.61.56.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.61.56.192|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.69.128.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.73.197.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.73.198.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.73.198.96|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.76.139.32|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.40.172.158.77.225.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.6.101.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.6.111.192|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.7.225.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.8.101.0|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.8.178.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.9.132.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.15.230.128|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.184.54.32|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.88.139.28.184.116.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.112.105.90.156.95.64|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.180.222.49.102.89.160|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.4.244.219.230.228.7.192|4x|0ab73464 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.9.9.846.1.2.13.1.5.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.9.9.846.1.2.14.1.3.0.4.10.183.52.100|66|55 +1.3.6.1.4.1.9.9.848.4.1.0|4| +1.3.6.1.4.1.9.9.848.5.1.0|66|60 +1.3.6.1.4.1.9.9.848.6.1.0|66|3 +1.3.6.1.4.1.9.9.848.8.1.1.1.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.848.8.1.1.1.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.2.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.2.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72204e41492053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72204f544e2053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72205341502053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f722054494d452053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72204e41492d49542053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e414920546869726420506172747920456d706c6f796565 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72204e412047756573742053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4x|64656661756c7420706f6c6963792070726f66696c65 +1.3.6.1.4.1.9.9.853.1.2.1.1.3.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|466f72204e41492d4d6f62696c652053534944 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4953455f4e41495f57494649 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4953455f4247435f4954 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4953455f545045 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4953455f574946495f4755455354 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.4.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.5.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.6.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.7.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.9.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.10.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.11.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f5045524d49545f574954485f5245535452494354494f4e53 +1.3.6.1.4.1.9.9.853.1.2.1.1.11.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.11.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.12.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.13.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.14.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|28800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.14.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|1800 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|28800 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.15.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|300 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.16.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.18.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.18.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.19.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.19.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.20.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.25.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|706c6174696e756d2d7570 +1.3.6.1.4.1.9.9.853.1.2.1.1.25.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.25.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4|platinum +1.3.6.1.4.1.9.9.853.1.2.1.1.26.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.26.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.27.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.28.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.29.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|600 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|600 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|10 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.29.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|60 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.30.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.31.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.32.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|64x|00000000 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.33.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.34.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.35.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.36.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.37.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|4 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.38.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.39.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.40.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.41.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.42.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.43.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.44.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.45.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.46.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.47.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.48.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.49.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.49.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.50.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.50.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.54.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.55.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.56.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.57.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.58.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.59.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.60.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.60.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.61.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.62.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.62.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.62.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|4e41495f495345 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.63.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.64.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.68.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4x|64656661756c742d6d646e732d736572766963652d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.1.1.69.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.69.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|4| +1.3.6.1.4.1.9.9.853.1.2.1.1.70.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.70.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|0 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.853.1.2.1.1.71.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.853.1.2.3.1.1.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|4x|64656661756c742d6161612d706f6c696379 +1.3.6.1.4.1.9.9.853.1.2.3.1.2.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|2|1 +1.3.6.1.4.1.9.9.853.1.2.3.1.3.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|2|10 +1.3.6.1.4.1.9.9.853.1.2.3.1.4.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|2|0 +1.3.6.1.4.1.9.9.853.1.2.3.1.5.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|2|0 +1.3.6.1.4.1.9.9.853.1.2.3.1.6.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|2|2 +1.3.6.1.4.1.9.9.853.1.2.3.1.7.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|4| +1.3.6.1.4.1.9.9.853.1.2.3.1.8.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|4| +1.3.6.1.4.1.9.9.853.1.2.3.1.9.18.100.101.102.97.117.108.116.45.97.97.97.45.112.111.108.105.99.121|4| +1.3.6.1.4.1.9.9.853.1.2.4.1.2.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.4.1.2.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.5.1.2.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69.18.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.6.1.2.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.853.1.2.7.1.2.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69.23.119.105.114.101.108.101.115.115.45.97.118.99.45.98.97.115.105.99.45.105.112.118.54|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.65.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|66|0 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.66.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.67.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.72.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.73.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|2 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.16.78.65.73.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.16.79.84.78.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.16.83.65.80.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.17.84.73.77.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.19.78.65.73.45.73.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.20.78.65.73.45.84.80.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.22.78.65.73.45.71.85.69.83.84.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.22.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.112.114.111.102.105.108.101|2|1 +1.3.6.1.4.1.9.9.889.1.2.1.1.74.23.78.65.73.45.77.79.66.73.76.69.45.87.73.70.73.45.80.82.79.70.73.76.69|2|1 +1.3.6.1.4.1.9.9.987.1.1.1.1.2.3.78.65.73|4x|466f72204e4149204d6172696c616f20506c616e74 +1.3.6.1.4.1.9.9.987.1.1.1.1.2.18.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.116.97.103|4x|64656661756c7420706f6c6963792d746167 +1.3.6.1.4.1.9.9.987.1.1.1.1.3.3.78.65.73|2|1 +1.3.6.1.4.1.9.9.987.1.1.1.1.3.18.100.101.102.97.117.108.116.45.112.111.108.105.99.121.45.116.97.103|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.8.78.65.73.95.87.76.65.78|4x|4e41492d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.8.79.84.78.95.87.76.65.78|4x|4f544e2d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.8.83.65.80.95.87.76.65.78|4x|5341502d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.9.84.73.77.69.95.87.76.65.78|4x|54494d452d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.11.78.65.73.95.73.84.95.87.76.65.78|4x|4e41492d49542d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.12.78.65.73.95.84.80.69.95.87.76.65.78|4x|4e41492d5450452d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.13.78.65.95.71.85.69.83.84.95.87.76.65.78|4x|4e41492d47554553542d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.14.84.73.77.69.95.84.69.77.80.95.87.76.65.78|4x|54494d452d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.2.3.78.65.73.15.78.65.73.95.77.79.66.73.76.69.95.87.76.65.78|4x|4e41492d4d4f42494c452d574946492d50524f46494c45 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.8.78.65.73.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.8.79.84.78.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.8.83.65.80.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.9.84.73.77.69.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.11.78.65.73.95.73.84.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.12.78.65.73.95.84.80.69.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.13.78.65.95.71.85.69.83.84.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.14.84.73.77.69.95.84.69.77.80.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.1.2.1.3.3.78.65.73.15.78.65.73.95.77.79.66.73.76.69.95.87.76.65.78|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.2.3.78.65.73|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.2.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.3.3.78.65.73|4x|4e4149204150204a4f494e +1.3.6.1.4.1.9.9.987.1.2.1.1.3.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|4x|64656661756c742d61702d70726f66696c65 +1.3.6.1.4.1.9.9.987.1.2.1.1.4.3.78.65.73|4x|64656661756c742d666c65782d70726f66696c65 +1.3.6.1.4.1.9.9.987.1.2.1.1.4.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|4x|64656661756c742d666c65782d70726f66696c65 +1.3.6.1.4.1.9.9.987.1.2.1.1.5.3.78.65.73|4x|4e7574726941736961205369746520546167 +1.3.6.1.4.1.9.9.987.1.2.1.1.5.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|4x|64656661756c74207369746520746167 +1.3.6.1.4.1.9.9.987.1.2.1.1.6.3.78.65.73|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.6.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.7.3.78.65.73|2|2 +1.3.6.1.4.1.9.9.987.1.2.1.1.7.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|2|2 +1.3.6.1.4.1.9.9.987.1.2.1.1.8.3.78.65.73|2|1 +1.3.6.1.4.1.9.9.987.1.2.1.1.8.16.100.101.102.97.117.108.116.45.115.105.116.101.45.116.97.103|2|1 +1.3.6.1.4.1.9.9.987.1.3.1.1.2.14.100.101.102.97.117.108.116.45.114.102.45.116.97.103|2|1 +1.3.6.1.4.1.9.9.987.1.3.1.1.3.14.100.101.102.97.117.108.116.45.114.102.45.116.97.103|4x|64656661756c745f72665f356768 +1.3.6.1.4.1.9.9.987.1.3.1.1.4.14.100.101.102.97.117.108.116.45.114.102.45.116.97.103|4x|64656661756c745f72665f32346768 +1.3.6.1.4.1.9.9.987.1.3.1.1.5.14.100.101.102.97.117.108.116.45.114.102.45.116.97.103|4x|64656661756c7420524620746167 +1.3.6.1.4.1.9.9.987.1.3.1.1.6.14.100.101.102.97.117.108.116.45.114.102.45.116.97.103|4x|64656661756c742d72662d70726f66696c652d3667687a +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.60.16.104.12.208|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.60.16.104.13.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.93.115.24.220.108|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.190.117.101.185.86|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.190.117.207.253.6|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.190.117.233.43.176|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.190.117.233.44.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.190.117.233.49.0|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.0.223.29.42.50.168|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.69.209.49.229.200|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.69.209.49.230.102|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.69.209.49.230.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.69.209.49.230.230|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.18.92|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.18.212|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.18.220|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.19.72|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.23.248|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.24.232|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.27.28|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.8.123.135.20.27.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.92.80.200|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.92.143.88|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.93.41.52|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.93.47.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.93.84.52|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.211.126.236|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.24.249.53.211.131.176|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.28.209.224.174.14.8|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.28.209.224.174.21.208|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.40.172.158.4.176.226|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.40.172.158.4.177.122|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.40.172.158.4.181.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.40.172.158.4.181.140|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.40.172.158.4.181.146|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.72.139.10.15.82.40|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.76.119.109.225.233.128|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.91.36|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.101.24|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.103.56|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.107.12|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.108.80|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.154.136|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.170.248|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.180.172|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.1.206.232|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.182.91.36|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.182.101.24|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.88.139.28.182.108.220|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.112.105.90.33.153.50|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.112.105.90.33.153.54|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.112.105.90.33.157.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.112.112.139.12.113.166|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.228.164.28.173.226.28|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.228.164.28.173.243.160|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.228.164.28.173.253.72|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.228.164.28.173.255.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.2.244.219.230.227.109.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.60.16.104.12.208|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.60.16.104.13.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.93.115.24.220.108|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.190.117.101.185.86|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.190.117.207.253.6|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.190.117.233.43.176|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.190.117.233.44.124|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.190.117.233.49.0|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.0.223.29.42.50.168|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.69.209.49.229.200|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.69.209.49.230.102|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.69.209.49.230.124|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.69.209.49.230.230|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.18.92|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.18.212|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.18.220|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.19.72|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.23.248|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.24.232|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.27.28|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.8.123.135.20.27.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.92.80.200|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.92.143.88|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.93.41.52|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.93.47.32|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.93.84.52|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.211.126.236|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.24.249.53.211.131.176|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.28.209.224.174.14.8|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.28.209.224.174.21.208|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.40.172.158.4.176.226|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.40.172.158.4.177.122|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.40.172.158.4.181.132|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.40.172.158.4.181.140|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.40.172.158.4.181.146|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.72.139.10.15.82.40|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.76.119.109.225.233.128|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.91.36|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.101.24|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.103.56|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.107.12|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.108.80|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.154.136|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.170.248|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.180.172|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.1.206.232|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.182.91.36|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.182.101.24|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.88.139.28.182.108.220|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.112.105.90.33.153.50|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.112.105.90.33.153.54|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.112.105.90.33.157.132|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.112.112.139.12.113.166|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.228.164.28.173.226.28|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.228.164.28.173.243.160|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.228.164.28.173.253.72|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.228.164.28.173.255.132|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.3.244.219.230.227.109.124|4x|64656661756c742d72662d746167 +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.60.16.104.12.208|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.60.16.104.13.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.93.115.24.220.108|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.190.117.101.185.86|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.190.117.207.253.6|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.190.117.233.43.176|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.190.117.233.44.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.190.117.233.49.0|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.0.223.29.42.50.168|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.69.209.49.229.200|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.69.209.49.230.102|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.69.209.49.230.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.69.209.49.230.230|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.18.92|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.18.212|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.18.220|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.19.72|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.23.248|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.24.232|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.27.28|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.8.123.135.20.27.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.92.80.200|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.92.143.88|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.93.41.52|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.93.47.32|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.93.84.52|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.211.126.236|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.24.249.53.211.131.176|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.28.209.224.174.14.8|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.28.209.224.174.21.208|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.40.172.158.4.176.226|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.40.172.158.4.177.122|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.40.172.158.4.181.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.40.172.158.4.181.140|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.40.172.158.4.181.146|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.72.139.10.15.82.40|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.76.119.109.225.233.128|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.91.36|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.101.24|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.103.56|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.107.12|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.108.80|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.154.136|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.170.248|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.180.172|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.1.206.232|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.182.91.36|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.182.101.24|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.88.139.28.182.108.220|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.112.105.90.33.153.50|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.112.105.90.33.153.54|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.112.105.90.33.157.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.112.112.139.12.113.166|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.228.164.28.173.226.28|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.228.164.28.173.243.160|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.228.164.28.173.253.72|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.228.164.28.173.255.132|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.4.244.219.230.227.109.124|4| +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.60.16.104.12.208|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.60.16.104.13.32|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.93.115.24.220.108|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.190.117.101.185.86|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.190.117.207.253.6|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.190.117.233.43.176|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.190.117.233.44.124|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.190.117.233.49.0|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.0.223.29.42.50.168|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.69.209.49.229.200|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.69.209.49.230.102|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.69.209.49.230.124|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.69.209.49.230.230|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.18.92|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.18.212|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.18.220|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.19.72|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.23.248|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.24.232|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.27.28|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.8.123.135.20.27.32|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.92.80.200|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.92.143.88|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.93.41.52|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.93.47.32|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.93.84.52|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.211.126.236|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.24.249.53.211.131.176|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.28.209.224.174.14.8|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.28.209.224.174.21.208|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.40.172.158.4.176.226|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.40.172.158.4.177.122|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.40.172.158.4.181.132|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.40.172.158.4.181.140|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.40.172.158.4.181.146|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.72.139.10.15.82.40|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.76.119.109.225.233.128|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.91.36|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.101.24|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.103.56|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.107.12|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.108.80|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.154.136|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.170.248|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.180.172|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.1.206.232|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.182.91.36|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.182.101.24|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.88.139.28.182.108.220|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.112.105.90.33.153.50|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.112.105.90.33.153.54|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.112.105.90.33.157.132|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.112.112.139.12.113.166|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.228.164.28.173.226.28|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.228.164.28.173.243.160|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.228.164.28.173.253.72|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.228.164.28.173.255.132|2|1 +1.3.6.1.4.1.9.9.987.1.4.1.1.5.244.219.230.227.109.124|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.2.0|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.2.1|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.2.2|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.2.3|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.2.4|2|1 +1.3.6.1.4.1.9.9.987.1.4.2.1.3.0|2|2 +1.3.6.1.4.1.9.9.987.1.4.2.1.3.1|2|6 +1.3.6.1.4.1.9.9.987.1.4.2.1.3.2|2|3 +1.3.6.1.4.1.9.9.987.1.4.2.1.3.3|2|4 +1.3.6.1.4.1.9.9.987.1.4.2.1.3.4|2|5 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.205.248|4x|0c23690fcdf8 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.206.46|4x|0c23690fce2e +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.207.26|4x|0c23690fcf1a +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.207.214|4x|0c23690fcfd6 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.208.88|4x|0c23690fd058 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.209.96|4x|0c23690fd160 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.12.35.105.15.209.166|4x|0c23690fd1a6 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.32.121.24.187.247.226|4x|207918bbf7e2 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.80.2.145.214.19.243|4x|500291d613f3 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.80.2.145.214.20.216|4x|500291d614d8 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.80.2.145.214.26.19|4x|500291d61a13 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.80.166.216.175.120.254|4x|50a6d8af78fe +1.3.6.1.4.1.9.9.989.1.1.4.1.1.106.196.41.62.181.65|4x|6ac4293eb541 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.116.58.244.35.33.112|4x|743af4232170 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.118.79.23.49.17.236|4x|764f173111ec +1.3.6.1.4.1.9.9.989.1.1.4.1.1.126.34.215.68.128.45|4x|7e22d744802d +1.3.6.1.4.1.9.9.989.1.1.4.1.1.140.248.197.1.94.110|4x|8cf8c5015e6e +1.3.6.1.4.1.9.9.989.1.1.4.1.1.140.248.197.172.142.231|4x|8cf8c5ac8ee7 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.144.15.12.69.125.29|4x|900f0c457d1d +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.112.242|4x|98aafc2470f2 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.11|4x|98aafc24710b +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.25|4x|98aafc247119 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.30|4x|98aafc24711e +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.66|4x|98aafc247142 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.83|4x|98aafc247153 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.107|4x|98aafc24716b +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.153|4x|98aafc247199 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.162|4x|98aafc2471a2 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.183|4x|98aafc2471b7 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.200|4x|98aafc2471c8 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.152.170.252.36.113.243|4x|98aafc2471f3 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.162.189.249.20.165.252|4x|a2bdf914a5fc +1.3.6.1.4.1.9.9.989.1.1.4.1.1.184.138.96.123.224.118|4x|b88a607be076 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.196.147|4x|bcddc224c493 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.197.57|4x|bcddc224c539 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.197.69|4x|bcddc224c545 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.197.76|4x|bcddc224c54c +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.202.212|4x|bcddc224cad4 +1.3.6.1.4.1.9.9.989.1.1.4.1.1.188.221.194.36.203.205|4x|bcddc224cbcd +1.3.6.1.4.1.9.9.989.1.1.4.1.1.202.79.81.64.136.236|4x|ca4f514088ec +1.3.6.1.4.1.9.9.989.1.1.4.1.1.222.213.61.11.103.183|4x|ded53d0b67b7 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.2.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.205.248|4x|0ab7b751 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.206.46|4x|0ab7b74e +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.207.26|4x|0ab7b73e +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.207.214|4x|0ab7b750 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.208.88|4x|0ab7b74b +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.209.96|4x|0ab7b73d +1.3.6.1.4.1.9.9.989.1.1.4.1.3.12.35.105.15.209.166|4x|0ab7b74f +1.3.6.1.4.1.9.9.989.1.1.4.1.3.32.121.24.187.247.226|4x|0ab74840 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.80.2.145.214.19.243|4x|0ab7bf15 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.80.2.145.214.20.216|4x|0ab7bf0d +1.3.6.1.4.1.9.9.989.1.1.4.1.3.80.2.145.214.26.19|4x|0ab7bf12 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.80.166.216.175.120.254|4x|0ab7b2a0 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.106.196.41.62.181.65|4x|0ab74819 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.116.58.244.35.33.112|4x|0ab7b165 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.118.79.23.49.17.236|4x|0ab7cd1b +1.3.6.1.4.1.9.9.989.1.1.4.1.3.126.34.215.68.128.45|4x|0ab7481c +1.3.6.1.4.1.9.9.989.1.1.4.1.3.140.248.197.1.94.110|4x|0ab7b167 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.140.248.197.172.142.231|4x|0ab7b166 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.144.15.12.69.125.29|4x|0ab7cd9a +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.112.242|4x|0ab7c1ba +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.11|4x|0ab7c16a +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.25|4x|0ab7c1ab +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.30|4x|0ab7c1b0 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.66|4x|0ab7c158 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.83|4x|0ab7c1cc +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.107|4x|0ab7c1df +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.153|4x|0ab7c121 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.162|4x|0ab7c159 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.183|4x|0ab7c124 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.200|4x|0ab7c1b5 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.152.170.252.36.113.243|4x|0ab7c1a4 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.162.189.249.20.165.252|4x|0ab7481b +1.3.6.1.4.1.9.9.989.1.1.4.1.3.184.138.96.123.224.118|4x|0ab74857 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.196.147|4x|0ab7bf22 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.197.57|4x|0ab7bf11 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.197.69|4x|0ab7bf10 +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.197.76|4x|0ab7bf0f +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.202.212|4x|0ab7bf0b +1.3.6.1.4.1.9.9.989.1.1.4.1.3.188.221.194.36.203.205|4x|0ab7bf0e +1.3.6.1.4.1.9.9.989.1.1.4.1.3.202.79.81.64.136.236|4x|0ab7481a +1.3.6.1.4.1.9.9.989.1.1.4.1.3.222.213.61.11.103.183|4x|0ab7481e +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.205.248|4|0c23690fcdf8 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.206.46|4|0c23690fce2e +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.207.26|4|0c23690fcf1a +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.207.214|4|0c23690fcfd6 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.208.88|4|0c23690fd058 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.209.96|4|0c23690fd160 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.12.35.105.15.209.166|4|0c23690fd1a6 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.32.121.24.187.247.226|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.80.2.145.214.19.243|4|500291d613f3 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.80.2.145.214.20.216|4|500291d614d8 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.80.2.145.214.26.19|4|500291d61a13 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.80.166.216.175.120.254|4|gsatienza +1.3.6.1.4.1.9.9.989.1.1.4.1.4.106.196.41.62.181.65|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.116.58.244.35.33.112|4x|534146492d5546435c5c4a4253616c696e6f67 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.118.79.23.49.17.236|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.126.34.215.68.128.45|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.140.248.197.1.94.110|4x|534146492d5546435c5c52564d6172636f73 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.140.248.197.172.142.231|4x|534146492d5546435c5c575142616c6167746173 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.144.15.12.69.125.29|4x|534146492d5546435c5c6667616e616c797374 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.112.242|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.11|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.25|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.30|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.66|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.83|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.107|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.153|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.162|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.183|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.200|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.152.170.252.36.113.243|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.162.189.249.20.165.252|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.184.138.96.123.224.118|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.196.147|4|bcddc224c493 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.197.57|4|bcddc224c539 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.197.69|4|bcddc224c545 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.197.76|4|bcddc224c54c +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.202.212|4|bcddc224cad4 +1.3.6.1.4.1.9.9.989.1.1.4.1.4.188.221.194.36.203.205|4|bcddc224cbcd +1.3.6.1.4.1.9.9.989.1.1.4.1.4.202.79.81.64.136.236|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.4.222.213.61.11.103.183|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.205.248|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.206.46|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.207.26|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.207.214|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.208.88|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.209.96|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.12.35.105.15.209.166|4|SAP +1.3.6.1.4.1.9.9.989.1.1.4.1.5.32.121.24.187.247.226|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.80.2.145.214.19.243|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.80.2.145.214.20.216|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.80.2.145.214.26.19|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.80.166.216.175.120.254|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.106.196.41.62.181.65|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.116.58.244.35.33.112|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.118.79.23.49.17.236|4x|4e41492d545045 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.126.34.215.68.128.45|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.140.248.197.1.94.110|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.140.248.197.172.142.231|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.144.15.12.69.125.29|4| +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.112.242|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.11|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.25|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.30|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.66|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.83|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.107|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.153|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.162|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.183|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.200|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.152.170.252.36.113.243|4|OTN +1.3.6.1.4.1.9.9.989.1.1.4.1.5.162.189.249.20.165.252|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.184.138.96.123.224.118|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.196.147|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.197.57|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.197.69|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.197.76|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.202.212|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.188.221.194.36.203.205|4|TIME +1.3.6.1.4.1.9.9.989.1.1.4.1.5.202.79.81.64.136.236|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.5.222.213.61.11.103.183|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.205.248|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.206.46|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.207.26|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.207.214|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.208.88|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.209.96|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.12.35.105.15.209.166|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.32.121.24.187.247.226|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.80.2.145.214.19.243|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.80.2.145.214.20.216|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.80.2.145.214.26.19|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.80.166.216.175.120.254|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.106.196.41.62.181.65|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.116.58.244.35.33.112|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.118.79.23.49.17.236|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.126.34.215.68.128.45|66|4 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.140.248.197.1.94.110|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.140.248.197.172.142.231|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.144.15.12.69.125.29|66|4 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.112.242|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.11|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.25|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.30|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.66|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.83|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.107|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.153|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.162|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.183|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.200|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.152.170.252.36.113.243|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.162.189.249.20.165.252|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.184.138.96.123.224.118|66|10 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.196.147|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.197.57|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.197.69|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.197.76|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.202.212|66|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.188.221.194.36.203.205|66|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.202.79.81.64.136.236|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.6.222.213.61.11.103.183|66|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.7.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.8.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.9.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.10.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.205.248|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.206.46|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.207.26|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.207.214|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.208.88|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.209.96|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.12.35.105.15.209.166|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.32.121.24.187.247.226|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.80.2.145.214.19.243|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.80.2.145.214.20.216|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.80.2.145.214.26.19|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.80.166.216.175.120.254|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.106.196.41.62.181.65|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.116.58.244.35.33.112|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.118.79.23.49.17.236|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.126.34.215.68.128.45|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.140.248.197.1.94.110|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.140.248.197.172.142.231|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.144.15.12.69.125.29|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.112.242|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.11|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.25|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.30|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.66|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.83|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.107|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.153|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.162|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.183|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.200|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.152.170.252.36.113.243|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.162.189.249.20.165.252|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.184.138.96.123.224.118|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.196.147|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.197.57|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.197.69|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.197.76|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.202.212|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.188.221.194.36.203.205|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.202.79.81.64.136.236|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.11.222.213.61.11.103.183|4x|00000000 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.205.248|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.206.46|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.207.26|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.207.214|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.208.88|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.209.96|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.12.35.105.15.209.166|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.32.121.24.187.247.226|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.80.2.145.214.19.243|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.80.2.145.214.20.216|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.80.2.145.214.26.19|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.80.166.216.175.120.254|66|65000 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.106.196.41.62.181.65|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.116.58.244.35.33.112|66|65535 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.118.79.23.49.17.236|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.126.34.215.68.128.45|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.140.248.197.1.94.110|66|65535 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.140.248.197.172.142.231|66|65535 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.144.15.12.69.125.29|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.112.242|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.11|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.25|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.30|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.66|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.83|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.107|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.153|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.162|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.183|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.200|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.152.170.252.36.113.243|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.162.189.249.20.165.252|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.184.138.96.123.224.118|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.196.147|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.197.57|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.197.69|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.197.76|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.202.212|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.188.221.194.36.203.205|66|28800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.202.79.81.64.136.236|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.12.222.213.61.11.103.183|66|1800 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.13.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.14.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.205.248|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.206.46|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.207.26|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.207.214|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.208.88|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.209.96|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.12.35.105.15.209.166|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.32.121.24.187.247.226|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.80.2.145.214.19.243|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.80.2.145.214.20.216|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.80.2.145.214.26.19|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.80.166.216.175.120.254|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.106.196.41.62.181.65|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.116.58.244.35.33.112|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.118.79.23.49.17.236|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.126.34.215.68.128.45|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.140.248.197.1.94.110|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.140.248.197.172.142.231|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.144.15.12.69.125.29|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.112.242|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.11|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.25|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.30|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.66|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.83|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.107|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.153|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.162|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.183|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.200|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.152.170.252.36.113.243|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.162.189.249.20.165.252|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.184.138.96.123.224.118|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.196.147|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.197.57|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.197.69|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.197.76|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.202.212|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.188.221.194.36.203.205|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.202.79.81.64.136.236|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.15.222.213.61.11.103.183|4|Run +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.16.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.19.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.20.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.205.248|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.206.46|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.207.26|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.207.214|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.208.88|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.209.96|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.12.35.105.15.209.166|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.32.121.24.187.247.226|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.80.2.145.214.19.243|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.80.2.145.214.20.216|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.80.2.145.214.26.19|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.80.166.216.175.120.254|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.106.196.41.62.181.65|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.116.58.244.35.33.112|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.118.79.23.49.17.236|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.126.34.215.68.128.45|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.140.248.197.1.94.110|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.140.248.197.172.142.231|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.144.15.12.69.125.29|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.112.242|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.11|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.25|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.30|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.66|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.83|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.107|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.153|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.162|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.183|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.200|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.152.170.252.36.113.243|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.162.189.249.20.165.252|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.184.138.96.123.224.118|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.196.147|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.197.57|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.197.69|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.197.76|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.202.212|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.188.221.194.36.203.205|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.202.79.81.64.136.236|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.21.222.213.61.11.103.183|2|6 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.22.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.205.248|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.206.46|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.207.26|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.207.214|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.208.88|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.209.96|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.12.35.105.15.209.166|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.32.121.24.187.247.226|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.80.2.145.214.19.243|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.80.2.145.214.20.216|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.80.2.145.214.26.19|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.80.166.216.175.120.254|4x|4953455f4d41525f537570436861696e +1.3.6.1.4.1.9.9.989.1.1.4.1.23.106.196.41.62.181.65|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.116.58.244.35.33.112|4x|4953455f4d41525f522644 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.118.79.23.49.17.236|4x|4953455f545045 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.126.34.215.68.128.45|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.140.248.197.1.94.110|4x|4953455f4d41525f522644 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.140.248.197.172.142.231|4x|4953455f4d41525f522644 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.144.15.12.69.125.29|4x|4953455f545045 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.112.242|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.11|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.25|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.30|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.66|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.83|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.107|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.153|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.162|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.183|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.200|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.152.170.252.36.113.243|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.162.189.249.20.165.252|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.184.138.96.123.224.118|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.196.147|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.197.57|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.197.69|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.197.76|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.202.212|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.188.221.194.36.203.205|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.202.79.81.64.136.236|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.23.222.213.61.11.103.183|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.205.248|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.206.46|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.207.26|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.207.214|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.208.88|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.209.96|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.12.35.105.15.209.166|2|183 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.32.121.24.187.247.226|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.80.2.145.214.19.243|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.80.2.145.214.20.216|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.80.2.145.214.26.19|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.80.166.216.175.120.254|2|178 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.106.196.41.62.181.65|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.116.58.244.35.33.112|2|177 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.118.79.23.49.17.236|2|205 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.126.34.215.68.128.45|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.140.248.197.1.94.110|2|177 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.140.248.197.172.142.231|2|177 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.144.15.12.69.125.29|2|205 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.112.242|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.11|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.25|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.30|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.66|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.83|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.107|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.153|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.162|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.183|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.200|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.152.170.252.36.113.243|2|193 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.162.189.249.20.165.252|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.184.138.96.123.224.118|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.196.147|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.197.57|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.197.69|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.197.76|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.202.212|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.188.221.194.36.203.205|2|191 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.202.79.81.64.136.236|2|72 +1.3.6.1.4.1.9.9.989.1.1.4.1.24.222.213.61.11.103.183|2|72 +1.3.6.1.4.1.9.9.4444.1.1.1.0|66|0 +1.3.6.1.4.1.9.9.4444.1.1.2.0|66|0 +1.3.6.1.4.1.9.9.9999.1.1.3.1.0|2|2 +1.3.6.1.4.1.9.9.9999.1.1.3.2.0|2|2 +1.3.6.1.4.1.9.9.9999.1.1.5.1.0|2|2 +1.3.6.1.4.1.9.9.9999.1.1.5.2.0|66|0 +1.3.6.1.4.1.9.9.9999.1.1.5.3.0|2|2 +1.3.6.1.4.1.9.9.9999.1.1.5.4.0|66|0 +1.3.6.1.4.1.9.9.9999.1.1.5.5.0|2|2 +1.3.6.1.4.1.9.9.9999.1.1.5.6.0|66|0 +1.3.6.1.4.1.9.9.9999.1.1.5.7.0|66|0 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.0.60.16.104.153.160|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.0.60.16.104.154.224|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.0.223.29.42.246.64|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.69.209.213.189.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.28.30.64|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.28.170.96|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.28.247.160|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.9.128|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.160.64|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.164.0|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.164.64|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.167.160|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.205.32|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.212.160|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.230.64|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.8.123.135.29.230.96|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.95.147.160|4x|4d41522d5453442d4f4646432d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.97.136.32|4x|4d41522d43484d502d30382d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.102.87.0|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.102.134.96|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.103.175.0|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.225.4.192|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.24.249.53.225.42.224|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.28.209.224.173.249.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.28.209.224.174.126.128|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.36.54.218.80.92.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.36.54.218.80.101.224|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.36.54.218.80.103.64|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.36.54.218.80.109.224|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.52.22.96|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.52.31.224|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.56.69.96|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.59.119.32|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.59.131.224|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.61.47.192|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.61.56.128|4x|4d41525f43484d505f30315f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.61.56.192|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.69.128.160|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.73.197.128|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.73.198.0|4x|4d41525f4c4f475f4f57485f41505f34 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.73.198.96|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.76.139.32|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.40.172.158.77.225.160|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.6.101.160|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.6.111.192|4x|4d41522d5344492d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.7.225.128|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.8.101.0|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.8.178.160|4x|4d41522d564d532d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.9.132.128|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.15.230.128|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.184.54.32|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.88.139.28.184.116.64|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.112.105.90.156.95.64|4x|4d41525f43484d505f30355f4150 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.180.222.49.102.89.160|4x|4d41525f41444d494e5f4255494c44494e47 +1.3.6.1.4.1.9.9.99999.1.1.1.1.1.244.219.230.228.7.192|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.0.60.16.104.153.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.0.60.16.104.154.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.0.223.29.42.246.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.69.209.213.189.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.28.30.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.28.170.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.28.247.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.9.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.160.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.164.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.164.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.167.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.205.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.212.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.230.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.8.123.135.29.230.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.95.147.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.97.136.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.102.87.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.102.134.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.103.175.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.225.4.192|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.24.249.53.225.42.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.28.209.224.173.249.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.28.209.224.174.126.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.36.54.218.80.92.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.36.54.218.80.101.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.36.54.218.80.103.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.36.54.218.80.109.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.52.22.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.52.31.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.56.69.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.59.119.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.59.131.224|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.61.47.192|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.61.56.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.61.56.192|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.69.128.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.73.197.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.73.198.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.73.198.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.76.139.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.40.172.158.77.225.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.6.101.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.6.111.192|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.7.225.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.8.101.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.8.178.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.9.132.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.15.230.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.184.54.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.88.139.28.184.116.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.112.105.90.156.95.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.180.222.49.102.89.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.2.244.219.230.228.7.192|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.0.60.16.104.153.160|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.0.60.16.104.154.224|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.0.223.29.42.246.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.69.209.213.189.0|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.28.30.64|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.28.170.96|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.28.247.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.9.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.160.64|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.164.0|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.164.64|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.167.160|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.205.32|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.212.160|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.230.64|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.8.123.135.29.230.96|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.95.147.160|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.97.136.32|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.102.87.0|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.102.134.96|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.103.175.0|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.225.4.192|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.24.249.53.225.42.224|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.28.209.224.173.249.0|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.28.209.224.174.126.128|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.36.54.218.80.92.0|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.36.54.218.80.101.224|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.36.54.218.80.103.64|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.36.54.218.80.109.224|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.52.22.96|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.52.31.224|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.56.69.96|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.59.119.32|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.59.131.224|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.61.47.192|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.61.56.128|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.61.56.192|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.69.128.160|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.73.197.128|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.73.198.0|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.73.198.96|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.76.139.32|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.40.172.158.77.225.160|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.6.101.160|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.6.111.192|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.7.225.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.8.101.0|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.8.178.160|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.9.132.128|4x|31372e392e342e3237 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.15.230.128|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.184.54.32|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.88.139.28.184.116.64|4x|31372e362e342e3536 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.112.105.90.156.95.64|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.180.222.49.102.89.160|4x|31372e332e372e3336 +1.3.6.1.4.1.9.9.99999.1.1.1.1.3.244.219.230.228.7.192|4x|382e352e3134302e30 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.4.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.9.9.99999.1.1.1.1.5.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.9.10.2.1.1.1.0|66|0 +1.3.6.1.4.1.9.10.24.1.1.5.0|2|1 +1.3.6.1.4.1.9.10.24.1.1.6.0|2|1 +1.3.6.1.4.1.9.10.25.1.5.1.0|2|2 +1.3.6.1.4.1.9.10.56.1.1.1.0|2|2 +1.3.6.1.4.1.9.10.56.1.1.2.1.3.2.1|64x|0ab72572 +1.3.6.1.4.1.9.10.56.1.1.2.1.3.2.2|64x|0ab72573 +1.3.6.1.4.1.9.10.56.1.1.2.1.4.2.1|2|1812 +1.3.6.1.4.1.9.10.56.1.1.2.1.4.2.2|2|1812 +1.3.6.1.4.1.9.10.56.1.1.2.1.5.2.1|2|1813 +1.3.6.1.4.1.9.10.56.1.1.2.1.5.2.2|2|1813 +1.3.6.1.4.1.9.10.56.1.1.2.1.6.2.1|4| +1.3.6.1.4.1.9.10.56.1.1.2.1.6.2.2|4| +1.3.6.1.4.1.9.10.56.1.1.2.1.7.2.1|66|1 +1.3.6.1.4.1.9.10.56.1.1.2.1.7.2.2|66|2 +1.3.6.1.4.1.9.10.56.1.1.2.1.8.2.1|2|1 +1.3.6.1.4.1.9.10.56.1.1.2.1.8.2.2|2|1 +1.3.6.1.4.1.9.10.56.1.2.1.1.1.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.1.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.2.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.2.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.3.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.3.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.4.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.4.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.5.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.5.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.6.2.1|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.6.2.2|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.7.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.7.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.8.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.8.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.9.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.9.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.10.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.10.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.11.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.11.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.12.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.12.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.13.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.13.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.14.2.1|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.14.2.2|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.15.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.15.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.16.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.16.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.17.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.17.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.18.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.18.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.19.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.19.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.20.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.20.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.21.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.21.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.22.2.1|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.22.2.2|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.23.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.23.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.24.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.24.2.2|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.25.2.1|2|1 +1.3.6.1.4.1.9.10.56.1.2.1.1.25.2.2|2|1 +1.3.6.1.4.1.9.10.56.1.2.1.1.26.2.1|2|429496729 +1.3.6.1.4.1.9.10.56.1.2.1.1.26.2.2|2|429496729 +1.3.6.1.4.1.9.10.56.1.2.1.1.27.2.1|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.27.2.2|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.28.2.1|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.28.2.2|2|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.29.2.1|65|0 +1.3.6.1.4.1.9.10.56.1.2.1.1.29.2.2|65|0 +1.3.6.1.4.1.9.10.62.1.1.1.0|2|2 +1.3.6.1.4.1.9.10.62.1.1.2.0|2|1 +1.3.6.1.4.1.9.10.62.1.1.3.0|2|10 +1.3.6.1.4.1.9.10.62.1.1.4.0|2|0 +1.3.6.1.4.1.9.10.62.1.1.6.1.2.7.100.101.102.97.117.108.116|4x|10 +1.3.6.1.4.1.9.10.62.1.1.6.1.3.7.100.101.102.97.117.108.116|4x|18 +1.3.6.1.4.1.9.10.62.1.1.6.1.4.7.100.101.102.97.117.108.116|4x|3200 +1.3.6.1.4.1.9.10.62.1.2.1.1.0|66|3600 +1.3.6.1.4.1.9.10.62.1.2.1.2.0|66|4608000 +1.3.6.1.4.1.9.10.62.1.2.1.3.0|66|0 +1.3.6.1.4.1.9.10.62.1.2.1.4.0|66|0 +1.3.6.1.4.1.9.10.62.1.2.1.5.0|66|0 +1.3.6.1.4.1.9.10.62.1.2.1.6.0|66|0 +1.3.6.1.4.1.9.10.62.1.2.2.1.0|65|0 +1.3.6.1.4.1.9.10.62.1.2.2.2.0|65|0 +1.3.6.1.4.1.9.10.62.1.2.2.3.0|65|0 +1.3.6.1.4.1.9.10.62.1.3.1.0|2|33766 +1.3.6.1.4.1.9.10.62.1.3.2.0|2|1 +1.3.6.1.4.1.9.10.62.1.4.1.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.2.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.3.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.4.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.5.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.6.0|2|2 +1.3.6.1.4.1.9.10.62.1.4.7.0|2|2 +1.3.6.1.4.1.9.10.65.1.1.1.0|4x|00000000 +1.3.6.1.4.1.9.10.65.1.1.2.0|2|5 +1.3.6.1.4.1.9.10.65.1.2.1.0|66|0 +1.3.6.1.4.1.9.10.65.1.3.3.0|2|2 +1.3.6.1.4.1.9.10.77.1.2.1.0|66|0 +1.3.6.1.4.1.9.10.77.1.2.3.0|66|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.2.1|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.2.2|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.2.3|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.2.4|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.3.1|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.3.2|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.3.3|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.3.4|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.4.1|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.4.2|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.4.3|65|0 +1.3.6.1.4.1.9.10.77.1.3.1.1.4.4|65|0 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.1|4|application +1.3.6.1.4.1.9.10.91.1.1.1.1.2.21|4x|74696d6572207761746368646f67 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.22|4x|74696d657220636f756e74646f776e +1.3.6.1.4.1.9.10.91.1.1.1.1.2.23|4x|74696d6572206162736f6c757465 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.24|4x|74696d65722063726f6e +1.3.6.1.4.1.9.10.91.1.1.1.1.2.31|4|counter +1.3.6.1.4.1.9.10.91.1.1.1.1.2.41|4|syslog +1.3.6.1.4.1.9.10.91.1.1.1.1.2.51|4|snmp +1.3.6.1.4.1.9.10.91.1.1.1.1.2.71|4|interface +1.3.6.1.4.1.9.10.91.1.1.1.1.2.81|4|ioswdsysmon +1.3.6.1.4.1.9.10.91.1.1.1.1.2.91|4x|726564756e64616e63792d666163696c697479 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.101|4|gold +1.3.6.1.4.1.9.10.91.1.1.1.1.2.121|4|cli +1.3.6.1.4.1.9.10.91.1.1.1.1.2.131|4|none +1.3.6.1.4.1.9.10.91.1.1.1.1.2.141|4|oir +1.3.6.1.4.1.9.10.91.1.1.1.1.2.171|4|test +1.3.6.1.4.1.9.10.91.1.1.1.1.2.181|4|config +1.3.6.1.4.1.9.10.91.1.1.1.1.2.191|4|env +1.3.6.1.4.1.9.10.91.1.1.1.1.2.201|4|resource +1.3.6.1.4.1.9.10.91.1.1.1.1.2.211|4|track +1.3.6.1.4.1.9.10.91.1.1.1.1.2.221|4|rpc +1.3.6.1.4.1.9.10.91.1.1.1.1.2.231|4x|736e6d705f6e6f74696669636174696f6e +1.3.6.1.4.1.9.10.91.1.1.1.1.2.241|4|ipsla +1.3.6.1.4.1.9.10.91.1.1.1.1.2.251|4|routing +1.3.6.1.4.1.9.10.91.1.1.1.1.2.271|4x|736e6d702d6f626a656374 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.301|4x|6e65696768626f722d646973636f76657279 +1.3.6.1.4.1.9.10.91.1.1.1.1.2.311|4|mat +1.3.6.1.4.1.9.10.91.1.1.1.1.2.341|4|nhrp +1.3.6.1.4.1.9.10.91.1.1.1.1.2.361|4|ds +1.3.6.1.4.1.9.10.91.1.1.1.1.2.371|4|generic +1.3.6.1.4.1.9.10.91.1.1.1.1.2.381|4|crash +1.3.6.1.4.1.9.10.91.1.1.1.1.3.1|4|application +1.3.6.1.4.1.9.10.91.1.1.1.1.3.21|4x|74696d6572207761746368646f67 +1.3.6.1.4.1.9.10.91.1.1.1.1.3.22|4x|74696d657220636f756e74646f776e +1.3.6.1.4.1.9.10.91.1.1.1.1.3.23|4x|74696d6572206162736f6c757465 +1.3.6.1.4.1.9.10.91.1.1.1.1.3.24|4x|74696d65722063726f6e +1.3.6.1.4.1.9.10.91.1.1.1.1.3.31|4|counter +1.3.6.1.4.1.9.10.91.1.1.1.1.3.41|4|syslog +1.3.6.1.4.1.9.10.91.1.1.1.1.3.51|4|snmp +1.3.6.1.4.1.9.10.91.1.1.1.1.3.71|4|interface +1.3.6.1.4.1.9.10.91.1.1.1.1.3.81|4|ioswdsysmon +1.3.6.1.4.1.9.10.91.1.1.1.1.3.91|4x|726564756e64616e63792d666163696c697479 +1.3.6.1.4.1.9.10.91.1.1.1.1.3.101|4|gold +1.3.6.1.4.1.9.10.91.1.1.1.1.3.121|4|cli +1.3.6.1.4.1.9.10.91.1.1.1.1.3.131|4|none +1.3.6.1.4.1.9.10.91.1.1.1.1.3.141|4|oir +1.3.6.1.4.1.9.10.91.1.1.1.1.3.171|4|test +1.3.6.1.4.1.9.10.91.1.1.1.1.3.181|4|config +1.3.6.1.4.1.9.10.91.1.1.1.1.3.191|4|env +1.3.6.1.4.1.9.10.91.1.1.1.1.3.201|4|resource +1.3.6.1.4.1.9.10.91.1.1.1.1.3.211|4|track +1.3.6.1.4.1.9.10.91.1.1.1.1.3.221|4|rpc +1.3.6.1.4.1.9.10.91.1.1.1.1.3.231|4x|736e6d705f6e6f74696669636174696f6e +1.3.6.1.4.1.9.10.91.1.1.1.1.3.241|4|ipsla +1.3.6.1.4.1.9.10.91.1.1.1.1.3.251|4|routing +1.3.6.1.4.1.9.10.91.1.1.1.1.3.271|4x|736e6d702d6f626a656374 +1.3.6.1.4.1.9.10.91.1.1.1.1.3.301|4x|6e65696768626f722d646973636f76657279 +1.3.6.1.4.1.9.10.91.1.1.1.1.3.311|4|mat +1.3.6.1.4.1.9.10.91.1.1.1.1.3.341|4|nhrp +1.3.6.1.4.1.9.10.91.1.1.1.1.3.361|4|ds +1.3.6.1.4.1.9.10.91.1.1.1.1.3.371|4|generic +1.3.6.1.4.1.9.10.91.1.1.1.1.3.381|4|crash +1.3.6.1.4.1.9.10.91.1.2.1.0|2|10 +1.3.6.1.4.1.9.10.91.1.2.2.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.0|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.1|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.2|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.3|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.4|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.5|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.7|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.8|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.9|4x|436973636f5441432d31 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.10|4x|6261636b75702d636f6e666967 +1.3.6.1.4.1.9.10.91.1.3.1.1.2.11|4x|4d616e6461746f72792e636c69656e745f64656275675f62756e646c652e74636c +1.3.6.1.4.1.9.10.91.1.3.1.1.2.12|4x|4d616e6461746f72792e636f6e6669675f646f776e6c6f61642e74636c +1.3.6.1.4.1.9.10.91.1.3.1.1.2.13|4x|4d616e6461746f72792e63727970746f5f706b695f76776c635f7373635f636f6e6669672e74636c +1.3.6.1.4.1.9.10.91.1.3.1.1.2.14|4x|4d616e6461746f72792e72615f74726163696e675f746f6f6c2e74636c +1.3.6.1.4.1.9.10.91.1.3.1.1.2.15|4x|4d616e6461746f72792e74726163655f6578706f72742e74636c +1.3.6.1.4.1.9.10.91.1.3.1.1.3.0|66|24 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.1|66|381 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.2|66|41 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.3|66|101 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.4|66|191 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.5|66|141 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.7|66|24 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.8|66|41 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.9|66|171 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.10|66|24 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.11|66|121 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.12|66|41 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.13|66|121 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.14|66|121 +1.3.6.1.4.1.9.10.91.1.3.1.1.3.15|66|41 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.11|66|131 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.14|66|131 +1.3.6.1.4.1.9.10.91.1.3.1.1.4.15|66|41 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.5.15|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.6.15|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.0|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.1|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.2|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.3|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.4|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.5|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.7|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.8|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.9|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.10|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.11|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.12|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.13|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.14|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.7.15|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.0|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.1|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.2|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.3|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.4|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.5|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.7|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.8|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.9|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.10|2|1 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.11|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.12|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.13|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.14|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.8.15|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.0|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.1|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.2|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.3|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.4|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.5|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.7|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.8|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.9|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.10|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.11|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.12|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.13|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.14|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.9.15|2|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.0|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.1|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.2|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.3|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.4|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.5|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.7|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.8|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.9|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.10|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.11|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.12|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.13|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.14|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.10.15|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.0|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.1|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.2|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.3|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.4|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.5|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.7|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.8|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.9|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.10|4x|30393a32363a343920504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.11|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.12|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.13|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.14|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.11.15|4x|30393a32363a353320504854204a756c2031322032303234 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.0|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.1|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.2|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.3|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.4|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.5|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.7|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.8|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.9|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.10|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.11|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.12|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.13|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.14|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.12.15|4x|4e6f2072756e74696d65 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.0|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.1|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.2|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.3|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.4|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.5|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.7|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.8|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.9|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.10|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.11|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.12|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.13|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.14|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.13.15|65|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.14.15|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.15.15|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.16.15|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.0|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.1|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.2|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.3|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.4|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.5|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.7|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.8|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.9|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.10|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.11|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.12|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.13|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.14|66|0 +1.3.6.1.4.1.9.10.91.1.3.1.1.17.15|66|0 +1.3.6.1.4.1.9.10.98.1.1.0|66|0 +1.3.6.1.4.1.9.10.98.1.2.0|66|0 +1.3.6.1.4.1.9.10.98.1.3.0|66|0 +1.3.6.1.4.1.9.10.98.1.4.0|66|0 +1.3.6.1.4.1.9.10.98.1.5.0|66|0 +1.3.6.1.4.1.9.10.98.1.6.0|66|0 +1.3.6.1.4.1.9.10.98.1.7.0|66|0 +1.3.6.1.4.1.9.10.98.1.8.0|66|0 +1.3.6.1.4.1.9.10.98.1.9.0|66|0 +1.3.6.1.4.1.9.10.98.1.10.0|2|1 +1.3.6.1.4.1.9.10.98.1.11.0|2|2 +1.3.6.1.4.1.9.10.98.1.12.0|66|0 +1.3.6.1.4.1.9.10.98.1.13.0|65|0 +1.3.6.1.4.1.9.10.98.1.14.0|66|0 +1.3.6.1.4.1.9.10.102.1.1.1.0|4x|31372e392e34 +1.3.6.1.4.1.9.10.102.1.1.2.0|6|1.3.6.1.4.1.9.10.102.1.1 +1.3.6.1.4.1.9.10.102.1.8.1.0|70|0 +1.3.6.1.4.1.9.10.102.1.8.2.0|70|0 +1.3.6.1.4.1.9.10.102.1.8.3.0|70|0 +1.3.6.1.4.1.9.10.102.1.8.4.0|70|0 +1.3.6.1.4.1.9.10.102.1.8.5.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.1.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.2.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.3.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.4.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.5.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.6.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.7.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.8.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.9.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.10.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.11.0|70|0 +1.3.6.1.4.1.9.10.102.1.9.12.0|70|0 +1.3.6.1.4.1.9.10.106.1.1.0|66|0 +1.3.6.1.4.1.9.10.106.1.6.0|70|0 +1.3.6.1.4.1.9.10.106.1.9.0|2|2 +1.3.6.1.4.1.9.10.106.1.10.0|66|0 +1.3.6.1.4.1.9.10.107.1.2.0|66|0 +1.3.6.1.4.1.9.10.107.1.4.0|66|0 +1.3.6.1.4.1.9.10.113.1.1.1.0|66|1 +1.3.6.1.4.1.9.10.113.1.1.2.0|2|2 +1.3.6.1.4.1.9.10.113.1.2.1.1.1.7.68.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.9.10.113.1.2.1.1.2.7.68.101.102.97.117.108.116|67|1043 +1.3.6.1.4.1.9.10.113.1.2.1.1.3.7.68.101.102.97.117.108.116|66|0 +1.3.6.1.4.1.9.10.113.1.2.1.1.4.7.68.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.9.10.133.1.1.1.0|4| +1.3.6.1.4.1.9.10.133.1.1.3.0|66|0 +1.3.6.1.4.1.9.10.133.1.1.4.0|66|0 +1.3.6.1.4.1.9.10.133.1.1.5.0|4| +1.3.6.1.4.1.9.10.133.1.1.6.0|4| +1.3.6.1.4.1.9.10.133.1.1.7.0|2|2 +1.3.6.1.4.1.9.10.133.1.1.8.0|2|13 +1.3.6.1.4.1.9.10.133.1.1.9.0|4|never +1.3.6.1.4.1.9.10.133.1.7.1.0|2|2 +1.3.6.1.4.1.9.10.133.1.7.2.0|2|2 +1.3.6.1.4.1.9.10.133.1.7.3.0|2|2 +1.3.6.1.4.1.9.10.133.1.7.4.0|2|2 +1.3.6.1.4.1.9.10.133.1.7.5.0|2|2 +1.3.6.1.4.1.9.10.136.1.1.1.1.1|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.2|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.3|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.4|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.5|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.6|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.7|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.10|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.1.11|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.1|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.2|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.3|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.4|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.5|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.6|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.7|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.10|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.2.11|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.1|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.2|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.3|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.4|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.5|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.6|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.7|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.10|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.3.11|2|1 +1.3.6.1.4.1.9.10.136.1.1.1.4.1|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.2|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.3|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.4|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.5|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.6|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.7|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.10|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.4.11|66|1500 +1.3.6.1.4.1.9.10.136.1.1.1.5.1|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.2|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.3|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.4|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.5|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.6|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.7|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.10|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.5.11|66|0 +1.3.6.1.4.1.9.10.136.1.1.1.6.1|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.2|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.3|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.4|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.5|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.6|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.7|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.10|4x|20 +1.3.6.1.4.1.9.10.136.1.1.1.6.11|4x|20 +1.3.6.1.4.1.9.10.136.1.2.1.1.1|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.2|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.3|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.4|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.5|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.6|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.7|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.10|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.1.11|4x|000000000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.1|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.2|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.3|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.4|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.5|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.6|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.7|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.10|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.2.11|4x|000000 +1.3.6.1.4.1.9.10.136.1.2.1.3.1|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.2|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.3|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.4|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.5|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.6|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.7|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.10|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.3.11|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.4.1|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.2|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.3|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.4|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.5|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.6|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.7|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.10|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.4.11|2|2 +1.3.6.1.4.1.9.10.136.1.2.1.5.1|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.2|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.3|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.4|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.5|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.6|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.7|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.10|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.5.11|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.1|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.2|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.3|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.4|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.5|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.6|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.7|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.10|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.6.11|66|0 +1.3.6.1.4.1.9.10.136.1.2.1.7.1|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.2|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.3|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.4|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.5|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.6|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.7|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.10|4x|00 +1.3.6.1.4.1.9.10.136.1.2.1.7.11|4x|00 +1.3.6.1.4.1.9.10.136.1.3.1.1.1|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.2|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.3|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.4|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.5|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.6|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.7|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.10|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.1.11|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.1|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.2|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.3|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.4|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.5|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.6|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.7|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.10|2|1 +1.3.6.1.4.1.9.10.136.1.3.1.2.11|2|1 +1.3.6.1.4.1.9.10.136.1.4.1.1.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.1.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.2.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.3.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.4.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.5.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.6.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.7.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.8.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.9.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.10.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.11.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.12.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.13.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.14.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.15.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.16.11|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.1|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.2|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.3|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.4|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.5|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.6|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.7|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.10|65|0 +1.3.6.1.4.1.9.10.136.1.4.1.17.11|65|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.1|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.2|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.3|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.4|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.5|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.6|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.7|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.10|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.1.11|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.2.1|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.2|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.3|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.4|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.5|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.6|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.7|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.10|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.2.11|66|100 +1.3.6.1.4.1.9.10.136.1.5.1.3.1|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.2|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.3|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.4|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.5|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.6|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.7|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.10|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.3.11|66|0 +1.3.6.1.4.1.9.10.136.1.5.1.4.1|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.2|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.3|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.4|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.5|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.6|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.7|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.10|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.4.11|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.5.1|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.2|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.3|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.4|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.5|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.6|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.7|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.10|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.5.11|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.6.1|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.2|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.3|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.4|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.5|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.6|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.7|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.10|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.6.11|66|1000 +1.3.6.1.4.1.9.10.136.1.5.1.7.1|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.2|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.3|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.4|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.5|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.6|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.7|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.10|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.7.11|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.8.1|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.2|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.3|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.4|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.5|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.6|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.7|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.10|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.8.11|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.9.1|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.2|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.3|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.4|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.5|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.6|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.7|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.10|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.9.11|66|10 +1.3.6.1.4.1.9.10.136.1.5.1.10.1|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.2|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.3|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.4|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.5|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.6|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.7|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.10|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.10.11|66|1 +1.3.6.1.4.1.9.10.136.1.5.1.11.1|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.2|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.3|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.4|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.5|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.6|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.7|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.10|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.11.11|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.12.1|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.2|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.3|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.4|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.5|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.6|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.7|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.10|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.12.11|2|100 +1.3.6.1.4.1.9.10.136.1.5.1.13.1|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.2|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.3|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.4|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.5|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.6|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.7|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.10|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.13.11|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.14.1|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.2|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.3|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.4|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.5|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.6|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.7|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.10|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.14.11|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.15.1|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.2|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.3|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.4|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.5|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.6|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.7|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.10|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.15.11|2|1 +1.3.6.1.4.1.9.10.136.1.5.1.16.1|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.2|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.3|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.4|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.5|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.6|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.7|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.10|2|2 +1.3.6.1.4.1.9.10.136.1.5.1.16.11|2|2 +1.3.6.1.4.1.9.10.137.1.1.1.0|2|2 +1.3.6.1.4.1.9.10.137.1.1.3.0|66|1 +1.3.6.1.4.1.9.10.137.1.1.4.0|2|2 +1.3.6.1.4.1.23.2.20.1.1.1.1.1|2|1 +1.3.6.1.4.1.23.2.20.1.1.1.2.1|2|1 +1.3.6.1.4.1.23.2.20.1.1.1.3.1|65|0 +1.3.6.1.4.1.23.2.20.1.2.1.1.1|2|1 +1.3.6.1.4.1.23.2.20.1.2.1.2.1|2|1 +1.3.6.1.4.1.23.2.20.1.2.1.3.1|65|0 +1.3.6.1.4.1.14179.2.1.1.1.1.1|66|1 +1.3.6.1.4.1.14179.2.1.1.1.1.2|66|2 +1.3.6.1.4.1.14179.2.1.1.1.1.3|66|3 +1.3.6.1.4.1.14179.2.1.1.1.1.4|66|4 +1.3.6.1.4.1.14179.2.1.1.1.1.5|66|5 +1.3.6.1.4.1.14179.2.1.1.1.1.6|66|6 +1.3.6.1.4.1.14179.2.1.1.1.1.7|66|7 +1.3.6.1.4.1.14179.2.1.1.1.1.8|66|8 +1.3.6.1.4.1.14179.2.1.1.1.5.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.3|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.5.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.3|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.6.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.7.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.7.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.8.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.9.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.10.1|4| +1.3.6.1.4.1.14179.2.1.1.1.10.2|4| +1.3.6.1.4.1.14179.2.1.1.1.10.3|4| +1.3.6.1.4.1.14179.2.1.1.1.10.4|4| +1.3.6.1.4.1.14179.2.1.1.1.10.5|4| +1.3.6.1.4.1.14179.2.1.1.1.10.6|4| +1.3.6.1.4.1.14179.2.1.1.1.10.7|4| +1.3.6.1.4.1.14179.2.1.1.1.10.8|4| +1.3.6.1.4.1.14179.2.1.1.1.11.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.11.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.11.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.11.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.11.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.11.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.11.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.11.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.12.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.3|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.12.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.13.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.13.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.29.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.30.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.38.1|65|5 +1.3.6.1.4.1.14179.2.1.1.1.38.2|65|7 +1.3.6.1.4.1.14179.2.1.1.1.38.3|65|0 +1.3.6.1.4.1.14179.2.1.1.1.38.4|65|0 +1.3.6.1.4.1.14179.2.1.1.1.38.5|65|7 +1.3.6.1.4.1.14179.2.1.1.1.38.6|65|9 +1.3.6.1.4.1.14179.2.1.1.1.38.7|65|12 +1.3.6.1.4.1.14179.2.1.1.1.38.8|65|1 +1.3.6.1.4.1.14179.2.1.1.1.43.1|4| +1.3.6.1.4.1.14179.2.1.1.1.43.2|4| +1.3.6.1.4.1.14179.2.1.1.1.43.3|4| +1.3.6.1.4.1.14179.2.1.1.1.43.4|4| +1.3.6.1.4.1.14179.2.1.1.1.43.5|4| +1.3.6.1.4.1.14179.2.1.1.1.43.6|4| +1.3.6.1.4.1.14179.2.1.1.1.43.7|4| +1.3.6.1.4.1.14179.2.1.1.1.43.8|4| +1.3.6.1.4.1.14179.2.1.1.1.44.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.44.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.48.8|2|0 +1.3.6.1.4.1.14179.2.1.1.1.51.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.51.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.51.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.51.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.51.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.51.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.51.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.51.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.3|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.60.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.61.1|2|2 +1.3.6.1.4.1.14179.2.1.1.1.61.2|2|2 +1.3.6.1.4.1.14179.2.1.1.1.61.3|2|2 +1.3.6.1.4.1.14179.2.1.1.1.61.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.61.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.61.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.61.7|2|2 +1.3.6.1.4.1.14179.2.1.1.1.61.8|2|2 +1.3.6.1.4.1.14179.2.1.1.1.63.1|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.2|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.3|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.4|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.5|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.6|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.7|2|1 +1.3.6.1.4.1.14179.2.1.1.1.63.8|2|1 +1.3.6.1.4.1.14179.2.1.1.1.64.1|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.2|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.3|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.4|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.5|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.6|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.7|2|0 +1.3.6.1.4.1.14179.2.1.1.1.64.8|2|0 +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.205.248|4x|0c23690fcdf8 +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.206.46|4x|0c23690fce2e +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.207.26|4x|0c23690fcf1a +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.207.214|4x|0c23690fcfd6 +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.208.88|4x|0c23690fd058 +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.209.96|4x|0c23690fd160 +1.3.6.1.4.1.14179.2.1.4.1.1.12.35.105.15.209.166|4x|0c23690fd1a6 +1.3.6.1.4.1.14179.2.1.4.1.1.32.121.24.187.247.226|4x|207918bbf7e2 +1.3.6.1.4.1.14179.2.1.4.1.1.80.2.145.214.19.243|4x|500291d613f3 +1.3.6.1.4.1.14179.2.1.4.1.1.80.2.145.214.20.216|4x|500291d614d8 +1.3.6.1.4.1.14179.2.1.4.1.1.80.2.145.214.26.19|4x|500291d61a13 +1.3.6.1.4.1.14179.2.1.4.1.1.80.166.216.175.120.254|4x|50a6d8af78fe +1.3.6.1.4.1.14179.2.1.4.1.1.106.196.41.62.181.65|4x|6ac4293eb541 +1.3.6.1.4.1.14179.2.1.4.1.1.116.58.244.35.33.112|4x|743af4232170 +1.3.6.1.4.1.14179.2.1.4.1.1.118.79.23.49.17.236|4x|764f173111ec +1.3.6.1.4.1.14179.2.1.4.1.1.126.34.215.68.128.45|4x|7e22d744802d +1.3.6.1.4.1.14179.2.1.4.1.1.140.248.197.1.94.110|4x|8cf8c5015e6e +1.3.6.1.4.1.14179.2.1.4.1.1.140.248.197.172.142.231|4x|8cf8c5ac8ee7 +1.3.6.1.4.1.14179.2.1.4.1.1.144.15.12.69.125.29|4x|900f0c457d1d +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.112.242|4x|98aafc2470f2 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.11|4x|98aafc24710b +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.25|4x|98aafc247119 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.30|4x|98aafc24711e +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.66|4x|98aafc247142 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.83|4x|98aafc247153 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.107|4x|98aafc24716b +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.153|4x|98aafc247199 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.162|4x|98aafc2471a2 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.183|4x|98aafc2471b7 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.200|4x|98aafc2471c8 +1.3.6.1.4.1.14179.2.1.4.1.1.152.170.252.36.113.243|4x|98aafc2471f3 +1.3.6.1.4.1.14179.2.1.4.1.1.162.189.249.20.165.252|4x|a2bdf914a5fc +1.3.6.1.4.1.14179.2.1.4.1.1.184.138.96.123.224.118|4x|b88a607be076 +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.196.147|4x|bcddc224c493 +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.197.57|4x|bcddc224c539 +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.197.69|4x|bcddc224c545 +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.197.76|4x|bcddc224c54c +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.202.212|4x|bcddc224cad4 +1.3.6.1.4.1.14179.2.1.4.1.1.188.221.194.36.203.205|4x|bcddc224cbcd +1.3.6.1.4.1.14179.2.1.4.1.1.202.79.81.64.136.236|4x|ca4f514088ec +1.3.6.1.4.1.14179.2.1.4.1.1.222.213.61.11.103.183|4x|ded53d0b67b7 +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.205.248|64x|0ab7b751 +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.206.46|64x|0ab7b74e +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.207.26|64x|0ab7b73e +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.207.214|64x|0ab7b750 +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.208.88|64x|0ab7b74b +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.209.96|64x|0ab7b73d +1.3.6.1.4.1.14179.2.1.4.1.2.12.35.105.15.209.166|64x|0ab7b74f +1.3.6.1.4.1.14179.2.1.4.1.2.32.121.24.187.247.226|64x|0ab74840 +1.3.6.1.4.1.14179.2.1.4.1.2.80.2.145.214.19.243|64x|0ab7bf15 +1.3.6.1.4.1.14179.2.1.4.1.2.80.2.145.214.20.216|64x|0ab7bf0d +1.3.6.1.4.1.14179.2.1.4.1.2.80.2.145.214.26.19|64x|0ab7bf12 +1.3.6.1.4.1.14179.2.1.4.1.2.80.166.216.175.120.254|64x|0ab7b2a0 +1.3.6.1.4.1.14179.2.1.4.1.2.106.196.41.62.181.65|64x|0ab74819 +1.3.6.1.4.1.14179.2.1.4.1.2.116.58.244.35.33.112|64x|0ab7b165 +1.3.6.1.4.1.14179.2.1.4.1.2.118.79.23.49.17.236|64x|0ab7cd1b +1.3.6.1.4.1.14179.2.1.4.1.2.126.34.215.68.128.45|64x|0ab7481c +1.3.6.1.4.1.14179.2.1.4.1.2.140.248.197.1.94.110|64x|0ab7b167 +1.3.6.1.4.1.14179.2.1.4.1.2.140.248.197.172.142.231|64x|0ab7b166 +1.3.6.1.4.1.14179.2.1.4.1.2.144.15.12.69.125.29|64x|0ab7cd9a +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.112.242|64x|0ab7c1ba +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.11|64x|0ab7c16a +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.25|64x|0ab7c1ab +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.30|64x|0ab7c1b0 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.66|64x|0ab7c158 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.83|64x|0ab7c1cc +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.107|64x|0ab7c1df +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.153|64x|0ab7c121 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.162|64x|0ab7c159 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.183|64x|0ab7c124 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.200|64x|0ab7c1b5 +1.3.6.1.4.1.14179.2.1.4.1.2.152.170.252.36.113.243|64x|0ab7c1a4 +1.3.6.1.4.1.14179.2.1.4.1.2.162.189.249.20.165.252|64x|0ab7481b +1.3.6.1.4.1.14179.2.1.4.1.2.184.138.96.123.224.118|64x|0ab74857 +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.196.147|64x|0ab7bf22 +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.197.57|64x|0ab7bf11 +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.197.69|64x|0ab7bf10 +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.197.76|64x|0ab7bf0f +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.202.212|64x|0ab7bf0b +1.3.6.1.4.1.14179.2.1.4.1.2.188.221.194.36.203.205|64x|0ab7bf0e +1.3.6.1.4.1.14179.2.1.4.1.2.202.79.81.64.136.236|64x|0ab7481a +1.3.6.1.4.1.14179.2.1.4.1.2.222.213.61.11.103.183|64x|0ab7481e +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.205.248|4|0c23690fcdf8 +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.206.46|4|0c23690fce2e +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.207.26|4|0c23690fcf1a +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.207.214|4|0c23690fcfd6 +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.208.88|4|0c23690fd058 +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.209.96|4|0c23690fd160 +1.3.6.1.4.1.14179.2.1.4.1.3.12.35.105.15.209.166|4|0c23690fd1a6 +1.3.6.1.4.1.14179.2.1.4.1.3.32.121.24.187.247.226|4| +1.3.6.1.4.1.14179.2.1.4.1.3.80.2.145.214.19.243|4|500291d613f3 +1.3.6.1.4.1.14179.2.1.4.1.3.80.2.145.214.20.216|4|500291d614d8 +1.3.6.1.4.1.14179.2.1.4.1.3.80.2.145.214.26.19|4|500291d61a13 +1.3.6.1.4.1.14179.2.1.4.1.3.80.166.216.175.120.254|4|gsatienza +1.3.6.1.4.1.14179.2.1.4.1.3.106.196.41.62.181.65|4| +1.3.6.1.4.1.14179.2.1.4.1.3.116.58.244.35.33.112|4x|534146492d5546435c5c4a4253616c696e6f67 +1.3.6.1.4.1.14179.2.1.4.1.3.118.79.23.49.17.236|4| +1.3.6.1.4.1.14179.2.1.4.1.3.126.34.215.68.128.45|4| +1.3.6.1.4.1.14179.2.1.4.1.3.140.248.197.1.94.110|4x|534146492d5546435c5c52564d6172636f73 +1.3.6.1.4.1.14179.2.1.4.1.3.140.248.197.172.142.231|4x|534146492d5546435c5c575142616c6167746173 +1.3.6.1.4.1.14179.2.1.4.1.3.144.15.12.69.125.29|4x|534146492d5546435c5c6667616e616c797374 +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.112.242|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.11|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.25|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.30|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.66|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.83|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.107|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.153|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.162|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.183|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.200|4| +1.3.6.1.4.1.14179.2.1.4.1.3.152.170.252.36.113.243|4| +1.3.6.1.4.1.14179.2.1.4.1.3.162.189.249.20.165.252|4| +1.3.6.1.4.1.14179.2.1.4.1.3.184.138.96.123.224.118|4| +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.196.147|4|bcddc224c493 +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.197.57|4|bcddc224c539 +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.197.69|4|bcddc224c545 +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.197.76|4|bcddc224c54c +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.202.212|4|bcddc224cad4 +1.3.6.1.4.1.14179.2.1.4.1.3.188.221.194.36.203.205|4|bcddc224cbcd +1.3.6.1.4.1.14179.2.1.4.1.3.202.79.81.64.136.236|4| +1.3.6.1.4.1.14179.2.1.4.1.3.222.213.61.11.103.183|4| +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.205.248|4x|087b871de640 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.206.46|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.207.26|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.207.214|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.208.88|4x|087b871de640 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.209.96|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.1.4.1.4.12.35.105.15.209.166|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.4.1.4.32.121.24.187.247.226|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.1.4.1.4.80.2.145.214.19.243|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.1.4.1.4.80.2.145.214.20.216|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.4.1.4.80.2.145.214.26.19|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.4.1.4.80.166.216.175.120.254|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.4.1.4.106.196.41.62.181.65|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.116.58.244.35.33.112|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.4.1.4.118.79.23.49.17.236|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.4.1.4.126.34.215.68.128.45|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.140.248.197.1.94.110|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.4.1.4.140.248.197.172.142.231|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.4.1.4.144.15.12.69.125.29|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.112.242|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.11|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.25|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.30|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.66|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.83|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.107|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.153|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.162|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.183|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.200|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.1.4.1.4.152.170.252.36.113.243|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.162.189.249.20.165.252|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.184.138.96.123.224.118|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.196.147|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.197.57|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.197.69|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.197.76|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.202.212|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.4.1.4.188.221.194.36.203.205|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.4.1.4.202.79.81.64.136.236|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.4.1.4.222.213.61.11.103.183|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.5.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.14179.2.1.4.1.5.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.14179.2.1.4.1.6.32.121.24.187.247.226|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.80.2.145.214.19.243|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.80.2.145.214.20.216|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.80.2.145.214.26.19|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.106.196.41.62.181.65|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.118.79.23.49.17.236|2|6 +1.3.6.1.4.1.14179.2.1.4.1.6.126.34.215.68.128.45|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.14179.2.1.4.1.6.162.189.249.20.165.252|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.184.138.96.123.224.118|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.196.147|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.197.57|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.197.69|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.197.76|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.202.212|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.188.221.194.36.203.205|2|4 +1.3.6.1.4.1.14179.2.1.4.1.6.202.79.81.64.136.236|2|8 +1.3.6.1.4.1.14179.2.1.4.1.6.222.213.61.11.103.183|2|8 +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.205.248|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.206.46|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.207.26|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.207.214|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.208.88|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.209.96|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.12.35.105.15.209.166|4|SAP +1.3.6.1.4.1.14179.2.1.4.1.7.32.121.24.187.247.226|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.80.2.145.214.19.243|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.80.2.145.214.20.216|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.80.2.145.214.26.19|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.80.166.216.175.120.254|4| +1.3.6.1.4.1.14179.2.1.4.1.7.106.196.41.62.181.65|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.116.58.244.35.33.112|4| +1.3.6.1.4.1.14179.2.1.4.1.7.118.79.23.49.17.236|4x|4e41492d545045 +1.3.6.1.4.1.14179.2.1.4.1.7.126.34.215.68.128.45|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.140.248.197.1.94.110|4| +1.3.6.1.4.1.14179.2.1.4.1.7.140.248.197.172.142.231|4| +1.3.6.1.4.1.14179.2.1.4.1.7.144.15.12.69.125.29|4| +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.112.242|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.11|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.25|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.30|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.66|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.83|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.107|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.153|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.162|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.183|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.200|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.152.170.252.36.113.243|4|OTN +1.3.6.1.4.1.14179.2.1.4.1.7.162.189.249.20.165.252|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.184.138.96.123.224.118|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.196.147|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.197.57|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.197.69|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.197.76|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.202.212|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.188.221.194.36.203.205|4|TIME +1.3.6.1.4.1.14179.2.1.4.1.7.202.79.81.64.136.236|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.7.222.213.61.11.103.183|4x|4e41492d4d6f62696c65 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.205.248|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.206.46|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.207.26|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.207.214|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.208.88|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.209.96|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.12.35.105.15.209.166|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.32.121.24.187.247.226|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.80.2.145.214.19.243|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.80.2.145.214.20.216|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.80.2.145.214.26.19|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.80.166.216.175.120.254|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.106.196.41.62.181.65|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.116.58.244.35.33.112|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.118.79.23.49.17.236|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.126.34.215.68.128.45|66|4 +1.3.6.1.4.1.14179.2.1.4.1.8.140.248.197.1.94.110|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.140.248.197.172.142.231|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.144.15.12.69.125.29|66|4 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.112.242|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.11|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.25|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.30|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.66|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.83|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.107|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.153|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.162|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.183|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.200|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.152.170.252.36.113.243|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.162.189.249.20.165.252|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.184.138.96.123.224.118|66|10 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.196.147|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.197.57|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.197.69|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.197.76|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.202.212|66|2 +1.3.6.1.4.1.14179.2.1.4.1.8.188.221.194.36.203.205|66|3 +1.3.6.1.4.1.14179.2.1.4.1.8.202.79.81.64.136.236|66|1 +1.3.6.1.4.1.14179.2.1.4.1.8.222.213.61.11.103.183|66|1 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.205.248|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.206.46|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.207.26|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.207.214|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.208.88|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.209.96|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.12.35.105.15.209.166|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.32.121.24.187.247.226|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.80.2.145.214.19.243|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.80.2.145.214.20.216|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.80.166.216.175.120.254|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.106.196.41.62.181.65|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.116.58.244.35.33.112|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.118.79.23.49.17.236|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.126.34.215.68.128.45|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.140.248.197.1.94.110|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.140.248.197.172.142.231|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.144.15.12.69.125.29|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.112.242|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.11|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.25|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.30|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.66|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.83|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.107|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.153|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.162|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.183|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.200|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.152.170.252.36.113.243|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.162.189.249.20.165.252|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.184.138.96.123.224.118|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.196.147|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.197.57|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.197.69|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.197.76|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.202.212|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.188.221.194.36.203.205|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.202.79.81.64.136.236|2|3 +1.3.6.1.4.1.14179.2.1.4.1.9.222.213.61.11.103.183|2|3 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.10.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.205.248|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.206.46|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.207.26|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.207.214|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.208.88|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.209.96|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.12.35.105.15.209.166|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.32.121.24.187.247.226|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.80.2.145.214.19.243|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.80.2.145.214.20.216|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.80.2.145.214.26.19|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.80.166.216.175.120.254|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.106.196.41.62.181.65|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.116.58.244.35.33.112|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.118.79.23.49.17.236|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.126.34.215.68.128.45|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.140.248.197.1.94.110|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.140.248.197.172.142.231|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.144.15.12.69.125.29|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.112.242|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.11|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.25|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.30|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.66|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.83|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.107|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.153|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.162|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.183|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.200|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.152.170.252.36.113.243|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.162.189.249.20.165.252|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.184.138.96.123.224.118|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.196.147|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.197.57|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.197.69|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.197.76|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.202.212|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.188.221.194.36.203.205|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.202.79.81.64.136.236|2|1 +1.3.6.1.4.1.14179.2.1.4.1.11.222.213.61.11.103.183|2|1 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.205.248|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.206.46|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.207.26|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.207.214|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.208.88|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.209.96|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.12.35.105.15.209.166|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.32.121.24.187.247.226|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.80.2.145.214.19.243|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.80.2.145.214.20.216|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.80.2.145.214.26.19|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.80.166.216.175.120.254|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.106.196.41.62.181.65|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.116.58.244.35.33.112|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.118.79.23.49.17.236|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.126.34.215.68.128.45|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.140.248.197.1.94.110|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.140.248.197.172.142.231|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.144.15.12.69.125.29|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.112.242|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.11|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.25|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.30|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.66|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.83|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.107|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.153|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.162|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.183|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.200|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.152.170.252.36.113.243|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.162.189.249.20.165.252|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.184.138.96.123.224.118|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.196.147|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.197.57|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.197.69|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.197.76|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.202.212|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.188.221.194.36.203.205|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.202.79.81.64.136.236|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.12.222.213.61.11.103.183|64x|00000000 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.13.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.14.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.15.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.16.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.17.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.205.248|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.206.46|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.207.26|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.207.214|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.208.88|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.209.96|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.12.35.105.15.209.166|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.32.121.24.187.247.226|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.80.2.145.214.19.243|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.80.2.145.214.20.216|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.80.2.145.214.26.19|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.80.166.216.175.120.254|66|65000 +1.3.6.1.4.1.14179.2.1.4.1.18.106.196.41.62.181.65|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.116.58.244.35.33.112|66|65535 +1.3.6.1.4.1.14179.2.1.4.1.18.118.79.23.49.17.236|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.126.34.215.68.128.45|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.140.248.197.1.94.110|66|65535 +1.3.6.1.4.1.14179.2.1.4.1.18.140.248.197.172.142.231|66|65535 +1.3.6.1.4.1.14179.2.1.4.1.18.144.15.12.69.125.29|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.112.242|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.11|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.25|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.30|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.66|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.83|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.107|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.153|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.162|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.183|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.200|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.152.170.252.36.113.243|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.162.189.249.20.165.252|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.184.138.96.123.224.118|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.196.147|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.197.57|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.197.69|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.197.76|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.202.212|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.188.221.194.36.203.205|66|28800 +1.3.6.1.4.1.14179.2.1.4.1.18.202.79.81.64.136.236|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.18.222.213.61.11.103.183|66|1800 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.19.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.20.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.205.248|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.206.46|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.207.26|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.207.214|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.208.88|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.209.96|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.12.35.105.15.209.166|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.32.121.24.187.247.226|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.80.2.145.214.19.243|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.80.2.145.214.20.216|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.80.2.145.214.26.19|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.80.166.216.175.120.254|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.106.196.41.62.181.65|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.116.58.244.35.33.112|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.118.79.23.49.17.236|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.126.34.215.68.128.45|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.140.248.197.1.94.110|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.140.248.197.172.142.231|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.144.15.12.69.125.29|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.112.242|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.11|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.25|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.30|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.66|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.83|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.107|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.153|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.162|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.183|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.200|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.152.170.252.36.113.243|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.162.189.249.20.165.252|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.184.138.96.123.224.118|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.196.147|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.197.57|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.197.69|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.197.76|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.202.212|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.188.221.194.36.203.205|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.202.79.81.64.136.236|66|0 +1.3.6.1.4.1.14179.2.1.4.1.21.222.213.61.11.103.183|66|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.22.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.205.248|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.206.46|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.207.26|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.207.214|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.208.88|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.209.96|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.12.35.105.15.209.166|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.32.121.24.187.247.226|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.80.2.145.214.19.243|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.80.2.145.214.20.216|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.80.2.145.214.26.19|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.80.166.216.175.120.254|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.106.196.41.62.181.65|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.116.58.244.35.33.112|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.118.79.23.49.17.236|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.126.34.215.68.128.45|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.140.248.197.1.94.110|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.140.248.197.172.142.231|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.144.15.12.69.125.29|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.112.242|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.11|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.25|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.30|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.66|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.83|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.107|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.153|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.162|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.183|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.200|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.152.170.252.36.113.243|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.162.189.249.20.165.252|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.184.138.96.123.224.118|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.196.147|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.197.57|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.197.69|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.197.76|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.202.212|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.188.221.194.36.203.205|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.202.79.81.64.136.236|4|Run +1.3.6.1.4.1.14179.2.1.4.1.23.222.213.61.11.103.183|4|Run +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.24.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.205.248|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.206.46|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.207.26|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.207.214|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.208.88|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.209.96|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.12.35.105.15.209.166|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.32.121.24.187.247.226|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.80.2.145.214.19.243|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.80.2.145.214.20.216|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.80.2.145.214.26.19|2|3 +1.3.6.1.4.1.14179.2.1.4.1.25.80.166.216.175.120.254|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.106.196.41.62.181.65|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.116.58.244.35.33.112|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.118.79.23.49.17.236|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.126.34.215.68.128.45|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.140.248.197.1.94.110|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.140.248.197.172.142.231|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.144.15.12.69.125.29|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.112.242|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.11|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.25|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.30|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.66|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.83|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.107|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.153|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.162|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.183|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.200|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.152.170.252.36.113.243|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.162.189.249.20.165.252|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.184.138.96.123.224.118|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.196.147|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.197.57|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.197.69|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.197.76|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.202.212|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.188.221.194.36.203.205|2|6 +1.3.6.1.4.1.14179.2.1.4.1.25.202.79.81.64.136.236|2|10 +1.3.6.1.4.1.14179.2.1.4.1.25.222.213.61.11.103.183|2|10 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.26.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.205.248|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.206.46|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.207.26|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.207.214|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.208.88|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.209.96|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.12.35.105.15.209.166|4x|4d41525f5341505f494f54 +1.3.6.1.4.1.14179.2.1.4.1.27.32.121.24.187.247.226|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.80.2.145.214.19.243|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.80.2.145.214.20.216|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.80.2.145.214.26.19|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.80.166.216.175.120.254|4x|4953455f4d41525f537570436861696e +1.3.6.1.4.1.14179.2.1.4.1.27.106.196.41.62.181.65|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.116.58.244.35.33.112|4x|4953455f4d41525f522644 +1.3.6.1.4.1.14179.2.1.4.1.27.118.79.23.49.17.236|4x|4953455f545045 +1.3.6.1.4.1.14179.2.1.4.1.27.126.34.215.68.128.45|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.140.248.197.1.94.110|4x|4953455f4d41525f522644 +1.3.6.1.4.1.14179.2.1.4.1.27.140.248.197.172.142.231|4x|4953455f4d41525f522644 +1.3.6.1.4.1.14179.2.1.4.1.27.144.15.12.69.125.29|4x|4953455f545045 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.112.242|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.11|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.25|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.30|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.66|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.83|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.107|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.153|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.162|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.183|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.200|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.152.170.252.36.113.243|4x|4d41525f4f545f574952454c455353 +1.3.6.1.4.1.14179.2.1.4.1.27.162.189.249.20.165.252|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.184.138.96.123.224.118|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.196.147|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.197.57|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.197.69|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.197.76|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.202.212|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.188.221.194.36.203.205|4x|4d41525f54696d6553796e63 +1.3.6.1.4.1.14179.2.1.4.1.27.202.79.81.64.136.236|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.27.222.213.61.11.103.183|4x|4d41525f4e41495f4d4f42494c45 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.28.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.205.248|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.206.46|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.207.26|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.207.214|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.208.88|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.209.96|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.12.35.105.15.209.166|2|183 +1.3.6.1.4.1.14179.2.1.4.1.29.32.121.24.187.247.226|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.80.2.145.214.19.243|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.80.2.145.214.20.216|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.80.2.145.214.26.19|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.80.166.216.175.120.254|2|178 +1.3.6.1.4.1.14179.2.1.4.1.29.106.196.41.62.181.65|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.116.58.244.35.33.112|2|177 +1.3.6.1.4.1.14179.2.1.4.1.29.118.79.23.49.17.236|2|205 +1.3.6.1.4.1.14179.2.1.4.1.29.126.34.215.68.128.45|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.140.248.197.1.94.110|2|177 +1.3.6.1.4.1.14179.2.1.4.1.29.140.248.197.172.142.231|2|177 +1.3.6.1.4.1.14179.2.1.4.1.29.144.15.12.69.125.29|2|205 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.112.242|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.11|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.25|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.30|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.66|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.83|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.107|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.153|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.162|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.183|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.200|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.152.170.252.36.113.243|2|193 +1.3.6.1.4.1.14179.2.1.4.1.29.162.189.249.20.165.252|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.184.138.96.123.224.118|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.196.147|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.197.57|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.197.69|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.197.76|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.202.212|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.188.221.194.36.203.205|2|191 +1.3.6.1.4.1.14179.2.1.4.1.29.202.79.81.64.136.236|2|72 +1.3.6.1.4.1.14179.2.1.4.1.29.222.213.61.11.103.183|2|72 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.14179.2.1.4.1.30.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.31.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.205.248|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.206.46|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.207.26|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.207.214|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.208.88|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.209.96|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.12.35.105.15.209.166|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.32.121.24.187.247.226|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.80.2.145.214.19.243|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.80.2.145.214.20.216|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.80.2.145.214.26.19|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.80.166.216.175.120.254|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.106.196.41.62.181.65|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.116.58.244.35.33.112|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.118.79.23.49.17.236|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.126.34.215.68.128.45|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.140.248.197.1.94.110|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.140.248.197.172.142.231|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.144.15.12.69.125.29|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.112.242|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.11|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.25|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.30|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.66|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.83|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.107|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.153|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.162|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.183|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.200|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.152.170.252.36.113.243|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.162.189.249.20.165.252|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.184.138.96.123.224.118|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.196.147|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.197.57|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.197.69|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.197.76|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.202.212|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.188.221.194.36.203.205|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.202.79.81.64.136.236|2|6 +1.3.6.1.4.1.14179.2.1.4.1.32.222.213.61.11.103.183|2|6 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.32.121.24.187.247.226|2|4 +1.3.6.1.4.1.14179.2.1.4.1.33.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.184.138.96.123.224.118|2|4 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.33.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.34.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.112.242|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.162.189.249.20.165.252|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.4.1.42.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.205.248|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.206.46|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.207.26|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.207.214|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.208.88|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.209.96|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.12.35.105.15.209.166|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.32.121.24.187.247.226|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.80.2.145.214.19.243|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.80.2.145.214.20.216|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.80.2.145.214.26.19|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.80.166.216.175.120.254|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.106.196.41.62.181.65|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.116.58.244.35.33.112|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.118.79.23.49.17.236|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.126.34.215.68.128.45|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.140.248.197.1.94.110|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.140.248.197.172.142.231|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.144.15.12.69.125.29|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.112.242|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.11|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.25|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.30|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.66|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.83|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.107|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.153|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.162|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.183|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.200|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.152.170.252.36.113.243|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.162.189.249.20.165.252|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.184.138.96.123.224.118|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.196.147|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.197.57|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.197.69|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.197.76|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.202.212|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.188.221.194.36.203.205|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.202.79.81.64.136.236|2|2 +1.3.6.1.4.1.14179.2.1.4.1.43.222.213.61.11.103.183|2|2 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.205.248|2|-48 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.206.46|2|-48 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.207.26|2|-65 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.207.214|2|-67 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.208.88|2|-47 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.209.96|2|-51 +1.3.6.1.4.1.14179.2.1.6.1.1.12.35.105.15.209.166|2|-74 +1.3.6.1.4.1.14179.2.1.6.1.1.32.121.24.187.247.226|2|-61 +1.3.6.1.4.1.14179.2.1.6.1.1.80.2.145.214.19.243|2|-50 +1.3.6.1.4.1.14179.2.1.6.1.1.80.2.145.214.20.216|2|-60 +1.3.6.1.4.1.14179.2.1.6.1.1.80.2.145.214.26.19|2|-66 +1.3.6.1.4.1.14179.2.1.6.1.1.80.166.216.175.120.254|2|-68 +1.3.6.1.4.1.14179.2.1.6.1.1.106.196.41.62.181.65|2|-52 +1.3.6.1.4.1.14179.2.1.6.1.1.116.58.244.35.33.112|2|-61 +1.3.6.1.4.1.14179.2.1.6.1.1.118.79.23.49.17.236|2|-53 +1.3.6.1.4.1.14179.2.1.6.1.1.126.34.215.68.128.45|2|-68 +1.3.6.1.4.1.14179.2.1.6.1.1.140.248.197.1.94.110|2|-43 +1.3.6.1.4.1.14179.2.1.6.1.1.140.248.197.172.142.231|2|-41 +1.3.6.1.4.1.14179.2.1.6.1.1.144.15.12.69.125.29|2|-61 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.112.242|2|-78 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.11|2|-49 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.25|2|-55 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.30|2|-55 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.66|2|-78 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.83|2|-66 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.107|2|-47 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.153|2|-60 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.162|2|-56 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.183|2|-57 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.200|2|-32 +1.3.6.1.4.1.14179.2.1.6.1.1.152.170.252.36.113.243|2|-77 +1.3.6.1.4.1.14179.2.1.6.1.1.162.189.249.20.165.252|2|-65 +1.3.6.1.4.1.14179.2.1.6.1.1.184.138.96.123.224.118|2|-69 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.196.147|2|-59 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.197.57|2|-59 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.197.69|2|-68 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.197.76|2|-52 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.202.212|2|-63 +1.3.6.1.4.1.14179.2.1.6.1.1.188.221.194.36.203.205|2|-71 +1.3.6.1.4.1.14179.2.1.6.1.1.202.79.81.64.136.236|2|-62 +1.3.6.1.4.1.14179.2.1.6.1.1.222.213.61.11.103.183|2|-80 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.205.248|70|182819 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.206.46|70|10911 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.207.214|70|10340 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.208.88|70|667463 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.209.96|70|7315 +1.3.6.1.4.1.14179.2.1.6.1.2.12.35.105.15.209.166|70|5806 +1.3.6.1.4.1.14179.2.1.6.1.2.32.121.24.187.247.226|70|306226 +1.3.6.1.4.1.14179.2.1.6.1.2.80.2.145.214.19.243|70|60316 +1.3.6.1.4.1.14179.2.1.6.1.2.80.2.145.214.20.216|70|13828 +1.3.6.1.4.1.14179.2.1.6.1.2.80.2.145.214.26.19|70|16992 +1.3.6.1.4.1.14179.2.1.6.1.2.80.166.216.175.120.254|70|1120359 +1.3.6.1.4.1.14179.2.1.6.1.2.106.196.41.62.181.65|70|38066 +1.3.6.1.4.1.14179.2.1.6.1.2.116.58.244.35.33.112|70|358223789 +1.3.6.1.4.1.14179.2.1.6.1.2.118.79.23.49.17.236|70|1867348 +1.3.6.1.4.1.14179.2.1.6.1.2.126.34.215.68.128.45|70|1344011 +1.3.6.1.4.1.14179.2.1.6.1.2.140.248.197.1.94.110|70|75584279 +1.3.6.1.4.1.14179.2.1.6.1.2.140.248.197.172.142.231|70|1083815972 +1.3.6.1.4.1.14179.2.1.6.1.2.144.15.12.69.125.29|70|125103883 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.112.242|70|3860 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.11|70|13881 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.25|70|6352 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.30|70|7307 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.66|70|3745 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.83|70|23801 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.107|70|17989 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.153|70|6102 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.162|70|10071 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.183|70|6845 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.200|70|5490 +1.3.6.1.4.1.14179.2.1.6.1.2.152.170.252.36.113.243|70|11638 +1.3.6.1.4.1.14179.2.1.6.1.2.162.189.249.20.165.252|70|2928306 +1.3.6.1.4.1.14179.2.1.6.1.2.184.138.96.123.224.118|70|424957 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.196.147|70|37955 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.197.57|70|55011 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.197.69|70|36467 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.197.76|70|1340 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.202.212|70|71458 +1.3.6.1.4.1.14179.2.1.6.1.2.188.221.194.36.203.205|70|47714 +1.3.6.1.4.1.14179.2.1.6.1.2.202.79.81.64.136.236|70|3179503 +1.3.6.1.4.1.14179.2.1.6.1.2.222.213.61.11.103.183|70|5099884 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.205.248|70|654947 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.206.46|70|23876 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.207.214|70|20336 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.208.88|70|14520609 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.209.96|70|10107 +1.3.6.1.4.1.14179.2.1.6.1.3.12.35.105.15.209.166|70|4371 +1.3.6.1.4.1.14179.2.1.6.1.3.32.121.24.187.247.226|70|256587 +1.3.6.1.4.1.14179.2.1.6.1.3.80.2.145.214.19.243|70|102340 +1.3.6.1.4.1.14179.2.1.6.1.3.80.2.145.214.20.216|70|22464 +1.3.6.1.4.1.14179.2.1.6.1.3.80.2.145.214.26.19|70|15192 +1.3.6.1.4.1.14179.2.1.6.1.3.80.166.216.175.120.254|70|13624841 +1.3.6.1.4.1.14179.2.1.6.1.3.106.196.41.62.181.65|70|54132 +1.3.6.1.4.1.14179.2.1.6.1.3.116.58.244.35.33.112|70|1832396922 +1.3.6.1.4.1.14179.2.1.6.1.3.118.79.23.49.17.236|70|1450057 +1.3.6.1.4.1.14179.2.1.6.1.3.126.34.215.68.128.45|70|27188487 +1.3.6.1.4.1.14179.2.1.6.1.3.140.248.197.1.94.110|70|125181818 +1.3.6.1.4.1.14179.2.1.6.1.3.140.248.197.172.142.231|70|1379596798 +1.3.6.1.4.1.14179.2.1.6.1.3.144.15.12.69.125.29|70|1063776103 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.112.242|70|1848 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.11|70|6176 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.25|70|3920 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.30|70|3674 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.66|70|1928 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.83|70|6716 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.107|70|5786 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.153|70|3183 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.162|70|4470 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.183|70|3280 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.200|70|2970 +1.3.6.1.4.1.14179.2.1.6.1.3.152.170.252.36.113.243|70|2318 +1.3.6.1.4.1.14179.2.1.6.1.3.162.189.249.20.165.252|70|19407235 +1.3.6.1.4.1.14179.2.1.6.1.3.184.138.96.123.224.118|70|903901 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.196.147|70|35801 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.197.57|70|36007 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.197.69|70|56647 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.197.76|70|1330 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.202.212|70|48997 +1.3.6.1.4.1.14179.2.1.6.1.3.188.221.194.36.203.205|70|76731 +1.3.6.1.4.1.14179.2.1.6.1.3.202.79.81.64.136.236|70|115271548 +1.3.6.1.4.1.14179.2.1.6.1.3.222.213.61.11.103.183|70|77368202 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.112.242|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.162.189.249.20.165.252|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.14179.2.1.6.1.4.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.205.248|70|766 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.206.46|70|91 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.207.214|70|81 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.208.88|70|6010 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.209.96|70|57 +1.3.6.1.4.1.14179.2.1.6.1.5.12.35.105.15.209.166|70|38 +1.3.6.1.4.1.14179.2.1.6.1.5.32.121.24.187.247.226|70|2160 +1.3.6.1.4.1.14179.2.1.6.1.5.80.2.145.214.19.243|70|654 +1.3.6.1.4.1.14179.2.1.6.1.5.80.2.145.214.20.216|70|145 +1.3.6.1.4.1.14179.2.1.6.1.5.80.2.145.214.26.19|70|184 +1.3.6.1.4.1.14179.2.1.6.1.5.80.166.216.175.120.254|70|6932 +1.3.6.1.4.1.14179.2.1.6.1.5.106.196.41.62.181.65|70|182 +1.3.6.1.4.1.14179.2.1.6.1.5.116.58.244.35.33.112|70|905346 +1.3.6.1.4.1.14179.2.1.6.1.5.118.79.23.49.17.236|70|5425 +1.3.6.1.4.1.14179.2.1.6.1.5.126.34.215.68.128.45|70|4188 +1.3.6.1.4.1.14179.2.1.6.1.5.140.248.197.1.94.110|70|167291 +1.3.6.1.4.1.14179.2.1.6.1.5.140.248.197.172.142.231|70|2157250 +1.3.6.1.4.1.14179.2.1.6.1.5.144.15.12.69.125.29|70|496548 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.112.242|70|27 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.11|70|112 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.25|70|52 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.30|70|58 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.66|70|31 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.83|70|233 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.107|70|143 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.153|70|58 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.162|70|82 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.183|70|55 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.200|70|59 +1.3.6.1.4.1.14179.2.1.6.1.5.152.170.252.36.113.243|70|90 +1.3.6.1.4.1.14179.2.1.6.1.5.162.189.249.20.165.252|70|8175 +1.3.6.1.4.1.14179.2.1.6.1.5.184.138.96.123.224.118|70|1438 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.196.147|70|406 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.197.57|70|586 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.197.69|70|391 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.197.76|70|9 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.202.212|70|767 +1.3.6.1.4.1.14179.2.1.6.1.5.188.221.194.36.203.205|70|510 +1.3.6.1.4.1.14179.2.1.6.1.5.202.79.81.64.136.236|70|13097 +1.3.6.1.4.1.14179.2.1.6.1.5.222.213.61.11.103.183|70|40027 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.205.248|70|604 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.206.46|70|72 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.207.214|70|61 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.208.88|70|11179 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.209.96|70|43 +1.3.6.1.4.1.14179.2.1.6.1.6.12.35.105.15.209.166|70|29 +1.3.6.1.4.1.14179.2.1.6.1.6.32.121.24.187.247.226|70|1650 +1.3.6.1.4.1.14179.2.1.6.1.6.80.2.145.214.19.243|70|627 +1.3.6.1.4.1.14179.2.1.6.1.6.80.2.145.214.20.216|70|141 +1.3.6.1.4.1.14179.2.1.6.1.6.80.2.145.214.26.19|70|145 +1.3.6.1.4.1.14179.2.1.6.1.6.80.166.216.175.120.254|70|14224 +1.3.6.1.4.1.14179.2.1.6.1.6.106.196.41.62.181.65|70|146 +1.3.6.1.4.1.14179.2.1.6.1.6.116.58.244.35.33.112|70|1813567 +1.3.6.1.4.1.14179.2.1.6.1.6.118.79.23.49.17.236|70|2597 +1.3.6.1.4.1.14179.2.1.6.1.6.126.34.215.68.128.45|70|22090 +1.3.6.1.4.1.14179.2.1.6.1.6.140.248.197.1.94.110|70|209744 +1.3.6.1.4.1.14179.2.1.6.1.6.140.248.197.172.142.231|70|2788402 +1.3.6.1.4.1.14179.2.1.6.1.6.144.15.12.69.125.29|70|927746 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.112.242|70|15 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.11|70|43 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.25|70|25 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.30|70|23 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.66|70|16 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.83|70|72 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.107|70|39 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.153|70|31 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.162|70|30 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.183|70|20 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.200|70|34 +1.3.6.1.4.1.14179.2.1.6.1.6.152.170.252.36.113.243|70|21 +1.3.6.1.4.1.14179.2.1.6.1.6.162.189.249.20.165.252|70|18740 +1.3.6.1.4.1.14179.2.1.6.1.6.184.138.96.123.224.118|70|1227 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.196.147|70|347 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.197.57|70|349 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.197.69|70|362 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.197.76|70|7 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.202.212|70|475 +1.3.6.1.4.1.14179.2.1.6.1.6.188.221.194.36.203.205|70|487 +1.3.6.1.4.1.14179.2.1.6.1.6.202.79.81.64.136.236|70|86243 +1.3.6.1.4.1.14179.2.1.6.1.6.222.213.61.11.103.183|70|61920 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.205.248|2|49 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.206.46|2|48 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.207.26|2|28 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.207.214|2|26 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.208.88|2|51 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.209.96|2|45 +1.3.6.1.4.1.14179.2.1.6.1.26.12.35.105.15.209.166|2|22 +1.3.6.1.4.1.14179.2.1.6.1.26.32.121.24.187.247.226|2|30 +1.3.6.1.4.1.14179.2.1.6.1.26.80.2.145.214.19.243|2|48 +1.3.6.1.4.1.14179.2.1.6.1.26.80.2.145.214.20.216|2|38 +1.3.6.1.4.1.14179.2.1.6.1.26.80.2.145.214.26.19|2|27 +1.3.6.1.4.1.14179.2.1.6.1.26.80.166.216.175.120.254|2|29 +1.3.6.1.4.1.14179.2.1.6.1.26.106.196.41.62.181.65|2|36 +1.3.6.1.4.1.14179.2.1.6.1.26.116.58.244.35.33.112|2|40 +1.3.6.1.4.1.14179.2.1.6.1.26.118.79.23.49.17.236|2|31 +1.3.6.1.4.1.14179.2.1.6.1.26.126.34.215.68.128.45|2|19 +1.3.6.1.4.1.14179.2.1.6.1.26.140.248.197.1.94.110|2|58 +1.3.6.1.4.1.14179.2.1.6.1.26.140.248.197.172.142.231|2|60 +1.3.6.1.4.1.14179.2.1.6.1.26.144.15.12.69.125.29|2|34 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.112.242|2|16 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.11|2|46 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.25|2|40 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.30|2|42 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.66|2|10 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.83|2|31 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.107|2|47 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.153|2|35 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.162|2|39 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.183|2|37 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.200|2|70 +1.3.6.1.4.1.14179.2.1.6.1.26.152.170.252.36.113.243|2|14 +1.3.6.1.4.1.14179.2.1.6.1.26.162.189.249.20.165.252|2|24 +1.3.6.1.4.1.14179.2.1.6.1.26.184.138.96.123.224.118|2|21 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.196.147|2|22 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.197.57|2|34 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.197.69|2|27 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.197.76|2|49 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.202.212|2|30 +1.3.6.1.4.1.14179.2.1.6.1.26.188.221.194.36.203.205|2|26 +1.3.6.1.4.1.14179.2.1.6.1.26.202.79.81.64.136.236|2|26 +1.3.6.1.4.1.14179.2.1.6.1.26.222.213.61.11.103.183|2|15 +1.3.6.1.4.1.14179.2.1.7.1.1.0.25.190.163.231.194|4x|0019bea3e7c2 +1.3.6.1.4.1.14179.2.1.7.1.1.0.103.98.11.175.24|4x|0067620baf18 +1.3.6.1.4.1.14179.2.1.7.1.1.2.25.190.163.231.194|4x|0219bea3e7c2 +1.3.6.1.4.1.14179.2.1.7.1.1.60.132.106.136.204.30|4x|3c846a88cc1e +1.3.6.1.4.1.14179.2.1.7.1.1.60.132.106.159.175.130|4x|3c846a9faf82 +1.3.6.1.4.1.14179.2.1.7.1.1.68.209.250.117.93.125|4x|44d1fa755d7d +1.3.6.1.4.1.14179.2.1.7.1.1.82.2.145.214.19.243|4x|520291d613f3 +1.3.6.1.4.1.14179.2.1.7.1.1.82.2.145.214.20.216|4x|520291d614d8 +1.3.6.1.4.1.14179.2.1.7.1.1.82.2.145.214.26.19|4x|520291d61a13 +1.3.6.1.4.1.14179.2.1.7.1.1.96.34.50.251.52.98|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.7.1.1.96.34.50.251.52.99|4x|602232fb3463 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.155.52.98|4x|6222329b3462 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.155.52.99|4x|6222329b3463 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.171.52.98|4x|622232ab3462 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.171.52.99|4x|622232ab3463 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.187.52.99|4x|622232bb3463 +1.3.6.1.4.1.14179.2.1.7.1.1.98.34.50.203.52.99|4x|622232cb3463 +1.3.6.1.4.1.14179.2.1.7.1.1.102.44.15.210.58.113|4x|662c0fd23a71 +1.3.6.1.4.1.14179.2.1.7.1.1.122.119.115.35.143.187|4x|7a7773238fbb +1.3.6.1.4.1.14179.2.1.7.1.1.122.119.115.51.143.187|4x|7a7773338fbb +1.3.6.1.4.1.14179.2.1.7.1.1.122.119.115.67.143.187|4x|7a7773438fbb +1.3.6.1.4.1.14179.2.1.7.1.1.122.119.115.83.143.187|4x|7a7773538fbb +1.3.6.1.4.1.14179.2.1.7.1.1.122.119.115.99.143.187|4x|7a7773638fbb +1.3.6.1.4.1.14179.2.1.7.1.1.130.193.240.80.231.55|4x|82c1f050e737 +1.3.6.1.4.1.14179.2.1.7.1.1.144.154.74.221.235.3|4x|909a4addeb03 +1.3.6.1.4.1.14179.2.1.7.1.1.144.154.74.221.235.5|4x|909a4addeb05 +1.3.6.1.4.1.14179.2.1.7.1.1.146.174.227.208.52.43|4x|92aee3d0342b +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.196.147|4x|beddc224c493 +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.197.57|4x|beddc224c539 +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.197.69|4x|beddc224c545 +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.197.76|4x|beddc224c54c +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.202.212|4x|beddc224cad4 +1.3.6.1.4.1.14179.2.1.7.1.1.190.221.194.36.203.205|4x|beddc224cbcd +1.3.6.1.4.1.14179.2.1.7.1.1.224.212.98.102.160.80|4x|e0d46266a050 +1.3.6.1.4.1.14179.2.1.7.1.1.224.225.169.118.154.63|4x|e0e1a9769a3f +1.3.6.1.4.1.14179.2.1.7.1.1.244.45.6.162.185.70|4x|f42d06a2b946 +1.3.6.1.4.1.14179.2.1.7.1.1.244.111.237.139.122.192|4x|f46fed8b7ac0 +1.3.6.1.4.1.14179.2.1.7.1.2.0.25.190.163.231.194|2|16 +1.3.6.1.4.1.14179.2.1.7.1.2.0.103.98.11.175.24|2|5 +1.3.6.1.4.1.14179.2.1.7.1.2.2.25.190.163.231.194|2|16 +1.3.6.1.4.1.14179.2.1.7.1.2.60.132.106.136.204.30|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.60.132.106.159.175.130|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.68.209.250.117.93.125|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.82.2.145.214.19.243|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.82.2.145.214.20.216|2|11 +1.3.6.1.4.1.14179.2.1.7.1.2.82.2.145.214.26.19|2|4 +1.3.6.1.4.1.14179.2.1.7.1.2.96.34.50.251.52.98|2|8 +1.3.6.1.4.1.14179.2.1.7.1.2.96.34.50.251.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.155.52.98|2|8 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.155.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.171.52.98|2|7 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.171.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.187.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.98.34.50.203.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.102.44.15.210.58.113|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.122.119.115.35.143.187|2|8 +1.3.6.1.4.1.14179.2.1.7.1.2.122.119.115.51.143.187|2|7 +1.3.6.1.4.1.14179.2.1.7.1.2.122.119.115.67.143.187|2|9 +1.3.6.1.4.1.14179.2.1.7.1.2.122.119.115.83.143.187|2|7 +1.3.6.1.4.1.14179.2.1.7.1.2.122.119.115.99.143.187|2|8 +1.3.6.1.4.1.14179.2.1.7.1.2.130.193.240.80.231.55|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.144.154.74.221.235.3|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.144.154.74.221.235.5|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.146.174.227.208.52.43|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.196.147|2|11 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.197.57|2|15 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.197.69|2|8 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.197.76|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.202.212|2|13 +1.3.6.1.4.1.14179.2.1.7.1.2.190.221.194.36.203.205|2|15 +1.3.6.1.4.1.14179.2.1.7.1.2.224.212.98.102.160.80|2|1 +1.3.6.1.4.1.14179.2.1.7.1.2.224.225.169.118.154.63|2|7 +1.3.6.1.4.1.14179.2.1.7.1.2.244.45.6.162.185.70|2|2 +1.3.6.1.4.1.14179.2.1.7.1.2.244.111.237.139.122.192|2|8 +1.3.6.1.4.1.14179.2.1.7.1.3.0.25.190.163.231.194|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.0.103.98.11.175.24|4x|224d6f6e205365702020322030353a32313a32372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.2.25.190.163.231.194|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.60.132.106.136.204.30|4x|224d6f6e205365702020322031393a33343a30342032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.60.132.106.159.175.130|4x|224d6f6e205365702020322031343a33303a34372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.68.209.250.117.93.125|4x|224d6f6e205365702020322030353a34303a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.82.2.145.214.19.243|4x|22467269204a756c2031322030393a32383a33302032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.82.2.145.214.20.216|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.82.2.145.214.26.19|4x|22467269204a756c2031322030393a32383a33312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.96.34.50.251.52.98|4x|22467269204a756c2031322030393a32383a34382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.96.34.50.251.52.99|4x|224d6f6e205365702020322032303a30363a35372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.155.52.98|4x|22467269204a756c2031322030393a32383a34382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.155.52.99|4x|224d6f6e205365702020322032303a30343a31382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.171.52.98|4x|22467269204a756c2031322030393a32383a35322032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.171.52.99|4x|224d6f6e205365702020322032303a31323a35372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.187.52.99|4x|224d6f6e205365702020322032323a33313a33392032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.98.34.50.203.52.99|4x|224d6f6e205365702020322032323a33373a33392032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.102.44.15.210.58.113|4x|224d6f6e205365702020322032333a32313a30352032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.122.119.115.35.143.187|4x|224d6f6e205365702020322030373a33333a33342032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.122.119.115.51.143.187|4x|224d6f6e205365702020322030373a33363a35372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.122.119.115.67.143.187|4x|224d6f6e205365702020322030373a33333a33342032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.122.119.115.83.143.187|4x|224d6f6e205365702020322030373a34323a31312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.122.119.115.99.143.187|4x|224d6f6e205365702020322030373a33333a33342032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.130.193.240.80.231.55|4x|224d6f6e205365702020322032333a33323a33332032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.144.154.74.221.235.3|4x|224d6f6e205365702020322032303a35393a30322032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.144.154.74.221.235.5|4x|224d6f6e205365702020322032333a32363a31332032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.146.174.227.208.52.43|4x|224d6f6e205365702020322032333a31383a34332032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.196.147|4x|2253756e204a756c2032312031343a30313a33312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.197.57|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.197.69|4x|22467269204a756c2031322030393a32383a32382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.197.76|4x|22467269204175672020392031373a31383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.202.212|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.190.221.194.36.203.205|4x|22467269204a756c2031322030393a32383a32312032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.224.212.98.102.160.80|4x|224d6f6e205365702020322032333a33333a32372032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.224.225.169.118.154.63|4x|224d6f6e205365702020322032313a33373a33332032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.244.45.6.162.185.70|4x|224d6f6e205365702020322032333a30303a35382032303234 +1.3.6.1.4.1.14179.2.1.7.1.3.244.111.237.139.122.192|4x|224d6f6e205365702020322030363a30353a30362032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.0.25.190.163.231.194|4x|224d6f6e205365702020322032333a33373a31382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.0.103.98.11.175.24|4x|224d6f6e205365702020322032333a33373a30352032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.2.25.190.163.231.194|4x|224d6f6e205365702020322032333a33373a31382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.60.132.106.136.204.30|4x|224d6f6e205365702020322032333a33363a31342032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.60.132.106.159.175.130|4x|224d6f6e205365702020322032333a33323a31372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.68.209.250.117.93.125|4x|224d6f6e205365702020322032333a33333a32392032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.82.2.145.214.19.243|4x|224d6f6e205365702020322032333a33363a35352032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.82.2.145.214.20.216|4x|224d6f6e205365702020322032333a33373a31372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.82.2.145.214.26.19|4x|224d6f6e205365702020322032333a33373a31372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.96.34.50.251.52.98|4x|224d6f6e205365702020322032333a33373a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.96.34.50.251.52.99|4x|224d6f6e205365702020322032333a33373a30392032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.155.52.98|4x|224d6f6e205365702020322032333a33373a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.155.52.99|4x|224d6f6e205365702020322032333a33373a30392032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.171.52.98|4x|224d6f6e205365702020322032333a33373a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.171.52.99|4x|224d6f6e205365702020322032333a33373a30392032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.187.52.99|4x|224d6f6e205365702020322032333a33353a32372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.98.34.50.203.52.99|4x|224d6f6e205365702020322032333a33373a30392032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.102.44.15.210.58.113|4x|224d6f6e205365702020322032333a32313a30352032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.122.119.115.35.143.187|4x|224d6f6e205365702020322032333a33373a31312032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.122.119.115.51.143.187|4x|224d6f6e205365702020322032333a33353a34302032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.122.119.115.67.143.187|4x|224d6f6e205365702020322032333a33373a31302032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.122.119.115.83.143.187|4x|224d6f6e205365702020322032333a33353a34302032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.122.119.115.99.143.187|4x|224d6f6e205365702020322032333a33373a31312032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.130.193.240.80.231.55|4x|224d6f6e205365702020322032333a33323a33332032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.144.154.74.221.235.3|4x|224d6f6e205365702020322032333a33313a33332032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.144.154.74.221.235.5|4x|224d6f6e205365702020322032333a32363a31332032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.146.174.227.208.52.43|4x|224d6f6e205365702020322032333a33343a35332032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.196.147|4x|224d6f6e205365702020322032333a33373a31382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.197.57|4x|224d6f6e205365702020322032333a33373a31312032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.197.69|4x|224d6f6e205365702020322032333a33373a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.197.76|4x|224d6f6e205365702020322032333a33363a35342032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.202.212|4x|224d6f6e205365702020322032333a33373a31312032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.190.221.194.36.203.205|4x|224d6f6e205365702020322032333a33373a31372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.224.212.98.102.160.80|4x|224d6f6e205365702020322032333a33343a35372032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.224.225.169.118.154.63|4x|224d6f6e205365702020322032333a33373a30382032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.244.45.6.162.185.70|4x|224d6f6e205365702020322032333a33343a32322032303234 +1.3.6.1.4.1.14179.2.1.7.1.4.244.111.237.139.122.192|4x|224d6f6e205365702020322032333a33373a31382032303234 +1.3.6.1.4.1.14179.2.1.7.1.5.0.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.0.103.98.11.175.24|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.2.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.60.132.106.136.204.30|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.60.132.106.159.175.130|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.68.209.250.117.93.125|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.82.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.82.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.82.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.96.34.50.251.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.96.34.50.251.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.155.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.155.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.171.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.171.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.187.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.98.34.50.203.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.102.44.15.210.58.113|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.122.119.115.35.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.122.119.115.51.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.122.119.115.67.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.122.119.115.83.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.122.119.115.99.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.130.193.240.80.231.55|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.144.154.74.221.235.3|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.144.154.74.221.235.5|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.146.174.227.208.52.43|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.190.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.224.212.98.102.160.80|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.224.225.169.118.154.63|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.244.45.6.162.185.70|2|0 +1.3.6.1.4.1.14179.2.1.7.1.5.244.111.237.139.122.192|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.0.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.0.103.98.11.175.24|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.2.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.60.132.106.136.204.30|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.60.132.106.159.175.130|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.68.209.250.117.93.125|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.82.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.82.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.82.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.96.34.50.251.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.96.34.50.251.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.155.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.155.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.171.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.171.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.187.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.98.34.50.203.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.102.44.15.210.58.113|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.122.119.115.35.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.122.119.115.51.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.122.119.115.67.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.122.119.115.83.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.122.119.115.99.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.130.193.240.80.231.55|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.144.154.74.221.235.3|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.144.154.74.221.235.5|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.146.174.227.208.52.43|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.190.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.224.212.98.102.160.80|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.224.225.169.118.154.63|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.244.45.6.162.185.70|2|0 +1.3.6.1.4.1.14179.2.1.7.1.6.244.111.237.139.122.192|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.0.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.0.103.98.11.175.24|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.2.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.60.132.106.136.204.30|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.60.132.106.159.175.130|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.68.209.250.117.93.125|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.82.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.82.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.82.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.96.34.50.251.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.96.34.50.251.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.155.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.155.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.171.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.171.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.187.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.98.34.50.203.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.102.44.15.210.58.113|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.122.119.115.35.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.122.119.115.51.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.122.119.115.67.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.122.119.115.83.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.122.119.115.99.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.130.193.240.80.231.55|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.144.154.74.221.235.3|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.144.154.74.221.235.5|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.146.174.227.208.52.43|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.190.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.224.212.98.102.160.80|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.224.225.169.118.154.63|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.244.45.6.162.185.70|2|0 +1.3.6.1.4.1.14179.2.1.7.1.7.244.111.237.139.122.192|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.0.25.190.163.231.194|2|1 +1.3.6.1.4.1.14179.2.1.7.1.8.0.103.98.11.175.24|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.2.25.190.163.231.194|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.60.132.106.136.204.30|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.60.132.106.159.175.130|2|1 +1.3.6.1.4.1.14179.2.1.7.1.8.68.209.250.117.93.125|2|1 +1.3.6.1.4.1.14179.2.1.7.1.8.82.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.82.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.82.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.96.34.50.251.52.98|2|4 +1.3.6.1.4.1.14179.2.1.7.1.8.96.34.50.251.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.155.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.155.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.171.52.98|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.171.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.187.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.98.34.50.203.52.99|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.102.44.15.210.58.113|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.122.119.115.35.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.122.119.115.51.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.122.119.115.67.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.122.119.115.83.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.122.119.115.99.143.187|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.130.193.240.80.231.55|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.144.154.74.221.235.3|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.144.154.74.221.235.5|2|1 +1.3.6.1.4.1.14179.2.1.7.1.8.146.174.227.208.52.43|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.190.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.224.212.98.102.160.80|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.224.225.169.118.154.63|2|0 +1.3.6.1.4.1.14179.2.1.7.1.8.244.45.6.162.185.70|2|1 +1.3.6.1.4.1.14179.2.1.7.1.8.244.111.237.139.122.192|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.0.25.190.163.231.194|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.0.103.98.11.175.24|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.2.25.190.163.231.194|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.60.132.106.136.204.30|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.60.132.106.159.175.130|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.68.209.250.117.93.125|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.82.2.145.214.19.243|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.82.2.145.214.20.216|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.82.2.145.214.26.19|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.96.34.50.251.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.96.34.50.251.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.155.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.155.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.171.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.171.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.187.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.98.34.50.203.52.99|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.102.44.15.210.58.113|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.122.119.115.35.143.187|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.122.119.115.51.143.187|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.122.119.115.67.143.187|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.122.119.115.83.143.187|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.122.119.115.99.143.187|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.130.193.240.80.231.55|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.144.154.74.221.235.3|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.144.154.74.221.235.5|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.146.174.227.208.52.43|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.196.147|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.197.57|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.197.69|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.197.76|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.202.212|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.190.221.194.36.203.205|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.224.212.98.102.160.80|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.224.225.169.118.154.63|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.244.45.6.162.185.70|2|1 +1.3.6.1.4.1.14179.2.1.7.1.9.244.111.237.139.122.192|2|1 +1.3.6.1.4.1.14179.2.1.7.1.10.0.25.190.163.231.194|2|-55 +1.3.6.1.4.1.14179.2.1.7.1.10.0.103.98.11.175.24|2|-68 +1.3.6.1.4.1.14179.2.1.7.1.10.2.25.190.163.231.194|2|-55 +1.3.6.1.4.1.14179.2.1.7.1.10.60.132.106.136.204.30|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.60.132.106.159.175.130|2|-79 +1.3.6.1.4.1.14179.2.1.7.1.10.68.209.250.117.93.125|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.82.2.145.214.19.243|2|-47 +1.3.6.1.4.1.14179.2.1.7.1.10.82.2.145.214.20.216|2|-59 +1.3.6.1.4.1.14179.2.1.7.1.10.82.2.145.214.26.19|2|-63 +1.3.6.1.4.1.14179.2.1.7.1.10.96.34.50.251.52.98|2|-63 +1.3.6.1.4.1.14179.2.1.7.1.10.96.34.50.251.52.99|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.155.52.98|2|-65 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.155.52.99|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.171.52.98|2|-65 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.171.52.99|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.187.52.99|2|-79 +1.3.6.1.4.1.14179.2.1.7.1.10.98.34.50.203.52.99|2|-79 +1.3.6.1.4.1.14179.2.1.7.1.10.102.44.15.210.58.113|2|-74 +1.3.6.1.4.1.14179.2.1.7.1.10.122.119.115.35.143.187|2|-50 +1.3.6.1.4.1.14179.2.1.7.1.10.122.119.115.51.143.187|2|-70 +1.3.6.1.4.1.14179.2.1.7.1.10.122.119.115.67.143.187|2|-50 +1.3.6.1.4.1.14179.2.1.7.1.10.122.119.115.83.143.187|2|-50 +1.3.6.1.4.1.14179.2.1.7.1.10.122.119.115.99.143.187|2|-48 +1.3.6.1.4.1.14179.2.1.7.1.10.130.193.240.80.231.55|2|-79 +1.3.6.1.4.1.14179.2.1.7.1.10.144.154.74.221.235.3|2|-76 +1.3.6.1.4.1.14179.2.1.7.1.10.144.154.74.221.235.5|2|-79 +1.3.6.1.4.1.14179.2.1.7.1.10.146.174.227.208.52.43|2|-78 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.196.147|2|-53 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.197.57|2|-58 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.197.69|2|-61 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.197.76|2|-52 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.202.212|2|-61 +1.3.6.1.4.1.14179.2.1.7.1.10.190.221.194.36.203.205|2|-63 +1.3.6.1.4.1.14179.2.1.7.1.10.224.212.98.102.160.80|2|-77 +1.3.6.1.4.1.14179.2.1.7.1.10.224.225.169.118.154.63|2|-56 +1.3.6.1.4.1.14179.2.1.7.1.10.244.45.6.162.185.70|2|-74 +1.3.6.1.4.1.14179.2.1.7.1.10.244.111.237.139.122.192|2|-71 +1.3.6.1.4.1.14179.2.1.7.1.11.0.25.190.163.231.194|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.7.1.11.0.103.98.11.175.24|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.7.1.11.2.25.190.163.231.194|4|TEST +1.3.6.1.4.1.14179.2.1.7.1.11.60.132.106.136.204.30|4|samonte +1.3.6.1.4.1.14179.2.1.7.1.11.60.132.106.159.175.130|4| +1.3.6.1.4.1.14179.2.1.7.1.11.68.209.250.117.93.125|4x|454e532057692d46692041502032 +1.3.6.1.4.1.14179.2.1.7.1.11.82.2.145.214.19.243|4x|4d6172696c616f5f436c6f636b5f3039 +1.3.6.1.4.1.14179.2.1.7.1.11.82.2.145.214.20.216|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.7.1.11.82.2.145.214.26.19|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.14179.2.1.7.1.11.96.34.50.251.52.98|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.7.1.11.96.34.50.251.52.99|4| +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.155.52.98|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.155.52.99|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.171.52.98|4| +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.171.52.99|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.187.52.99|4| +1.3.6.1.4.1.14179.2.1.7.1.11.98.34.50.203.52.99|4| +1.3.6.1.4.1.14179.2.1.7.1.11.102.44.15.210.58.113|4x|7669766f2031393135 +1.3.6.1.4.1.14179.2.1.7.1.11.122.119.115.35.143.187|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.7.1.11.122.119.115.51.143.187|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.7.1.11.122.119.115.67.143.187|4| +1.3.6.1.4.1.14179.2.1.7.1.11.122.119.115.83.143.187|4| +1.3.6.1.4.1.14179.2.1.7.1.11.122.119.115.99.143.187|4| +1.3.6.1.4.1.14179.2.1.7.1.11.130.193.240.80.231.55|4|MV84104853 +1.3.6.1.4.1.14179.2.1.7.1.11.144.154.74.221.235.3|4x|54502d4c696e6b5f45423033 +1.3.6.1.4.1.14179.2.1.7.1.11.144.154.74.221.235.5|4| +1.3.6.1.4.1.14179.2.1.7.1.11.146.174.227.208.52.43|4x|496e66696e697820484f5420333020504c4159 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.196.147|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.197.57|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.197.69|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.197.76|4x|4d6172696c616f5f436c6f636b5f3034 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.202.212|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.7.1.11.190.221.194.36.203.205|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.7.1.11.224.212.98.102.160.80|4x|4855415745492d313034305130 +1.3.6.1.4.1.14179.2.1.7.1.11.224.225.169.118.154.63|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.7.1.11.244.45.6.162.185.70|4|PLDTHOMEFIBRXP96n +1.3.6.1.4.1.14179.2.1.7.1.11.244.111.237.139.122.192|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.7.1.12.0.25.190.163.231.194|4x|3000 +1.3.6.1.4.1.14179.2.1.7.1.12.0.103.98.11.175.24|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.2.25.190.163.231.194|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.60.132.106.136.204.30|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.60.132.106.159.175.130|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.68.209.250.117.93.125|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.82.2.145.214.19.243|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.82.2.145.214.20.216|4x|9000 +1.3.6.1.4.1.14179.2.1.7.1.12.82.2.145.214.26.19|4x|9000 +1.3.6.1.4.1.14179.2.1.7.1.12.96.34.50.251.52.98|4x|3000 +1.3.6.1.4.1.14179.2.1.7.1.12.96.34.50.251.52.99|4x|0080 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.155.52.98|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.155.52.99|4x|0080 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.171.52.98|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.171.52.99|4x|0080 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.187.52.99|4x|0080 +1.3.6.1.4.1.14179.2.1.7.1.12.98.34.50.203.52.99|4x|0080 +1.3.6.1.4.1.14179.2.1.7.1.12.102.44.15.210.58.113|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.122.119.115.35.143.187|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.122.119.115.51.143.187|4x|0200 +1.3.6.1.4.1.14179.2.1.7.1.12.122.119.115.67.143.187|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.122.119.115.83.143.187|4x|0200 +1.3.6.1.4.1.14179.2.1.7.1.12.122.119.115.99.143.187|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.130.193.240.80.231.55|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.144.154.74.221.235.3|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.144.154.74.221.235.5|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.146.174.227.208.52.43|4x|2000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.196.147|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.197.57|4x|9000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.197.69|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.197.76|4x|8000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.202.212|4x|9000 +1.3.6.1.4.1.14179.2.1.7.1.12.190.221.194.36.203.205|4x|9000 +1.3.6.1.4.1.14179.2.1.7.1.12.224.212.98.102.160.80|4x|0100 +1.3.6.1.4.1.14179.2.1.7.1.12.224.225.169.118.154.63|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.244.45.6.162.185.70|4x|1000 +1.3.6.1.4.1.14179.2.1.7.1.12.244.111.237.139.122.192|4x|3000 +1.3.6.1.4.1.14179.2.1.7.1.13.0.25.190.163.231.194|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.7.1.13.0.103.98.11.175.24|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.7.1.13.2.25.190.163.231.194|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.7.1.13.60.132.106.136.204.30|4x|087b871caa60 +1.3.6.1.4.1.14179.2.1.7.1.13.60.132.106.159.175.130|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.7.1.13.68.209.250.117.93.125|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.7.1.13.82.2.145.214.19.243|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.1.7.1.13.82.2.145.214.20.216|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.7.1.13.82.2.145.214.26.19|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.7.1.13.96.34.50.251.52.98|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.7.1.13.96.34.50.251.52.99|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.155.52.98|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.155.52.99|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.171.52.98|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.171.52.99|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.187.52.99|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.7.1.13.98.34.50.203.52.99|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.7.1.13.102.44.15.210.58.113|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.7.1.13.122.119.115.35.143.187|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.7.1.13.122.119.115.51.143.187|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.7.1.13.122.119.115.67.143.187|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.7.1.13.122.119.115.83.143.187|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.7.1.13.122.119.115.99.143.187|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.7.1.13.130.193.240.80.231.55|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.1.7.1.13.144.154.74.221.235.3|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.7.1.13.144.154.74.221.235.5|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.7.1.13.146.174.227.208.52.43|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.196.147|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.197.57|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.197.69|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.197.76|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.202.212|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.7.1.13.190.221.194.36.203.205|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.1.7.1.13.224.212.98.102.160.80|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.7.1.13.224.225.169.118.154.63|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.1.7.1.13.244.45.6.162.185.70|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.7.1.13.244.111.237.139.122.192|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.7.1.14.0.25.190.163.231.194|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.0.103.98.11.175.24|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.2.25.190.163.231.194|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.60.132.106.136.204.30|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.60.132.106.159.175.130|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.68.209.250.117.93.125|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.82.2.145.214.19.243|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.82.2.145.214.20.216|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.82.2.145.214.26.19|2|1 +1.3.6.1.4.1.14179.2.1.7.1.14.96.34.50.251.52.98|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.96.34.50.251.52.99|2|10 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.155.52.98|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.155.52.99|2|10 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.171.52.98|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.171.52.99|2|10 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.187.52.99|2|10 +1.3.6.1.4.1.14179.2.1.7.1.14.98.34.50.203.52.99|2|10 +1.3.6.1.4.1.14179.2.1.7.1.14.102.44.15.210.58.113|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.122.119.115.35.143.187|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.122.119.115.51.143.187|2|8 +1.3.6.1.4.1.14179.2.1.7.1.14.122.119.115.67.143.187|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.122.119.115.83.143.187|2|8 +1.3.6.1.4.1.14179.2.1.7.1.14.122.119.115.99.143.187|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.130.193.240.80.231.55|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.144.154.74.221.235.3|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.144.154.74.221.235.5|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.146.174.227.208.52.43|2|5 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.196.147|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.197.57|2|1 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.197.69|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.197.76|2|1 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.202.212|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.190.221.194.36.203.205|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.224.212.98.102.160.80|2|9 +1.3.6.1.4.1.14179.2.1.7.1.14.224.225.169.118.154.63|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.244.45.6.162.185.70|2|6 +1.3.6.1.4.1.14179.2.1.7.1.14.244.111.237.139.122.192|2|5 +1.3.6.1.4.1.14179.2.1.7.1.24.0.25.190.163.231.194|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.0.103.98.11.175.24|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.2.25.190.163.231.194|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.60.132.106.136.204.30|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.60.132.106.159.175.130|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.68.209.250.117.93.125|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.82.2.145.214.19.243|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.82.2.145.214.20.216|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.82.2.145.214.26.19|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.96.34.50.251.52.98|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.96.34.50.251.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.155.52.98|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.155.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.171.52.98|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.171.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.187.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.98.34.50.203.52.99|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.102.44.15.210.58.113|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.122.119.115.35.143.187|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.122.119.115.51.143.187|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.122.119.115.67.143.187|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.122.119.115.83.143.187|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.122.119.115.99.143.187|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.130.193.240.80.231.55|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.144.154.74.221.235.3|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.144.154.74.221.235.5|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.146.174.227.208.52.43|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.196.147|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.197.57|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.197.69|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.197.76|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.202.212|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.190.221.194.36.203.205|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.224.212.98.102.160.80|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.224.225.169.118.154.63|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.244.45.6.162.185.70|2|2 +1.3.6.1.4.1.14179.2.1.7.1.24.244.111.237.139.122.192|2|2 +1.3.6.1.4.1.14179.2.1.7.1.25.0.25.190.163.231.194|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.0.103.98.11.175.24|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.2.25.190.163.231.194|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.60.132.106.136.204.30|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.60.132.106.159.175.130|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.68.209.250.117.93.125|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.82.2.145.214.19.243|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.82.2.145.214.20.216|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.82.2.145.214.26.19|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.96.34.50.251.52.98|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.96.34.50.251.52.99|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.155.52.98|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.155.52.99|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.171.52.98|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.171.52.99|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.187.52.99|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.98.34.50.203.52.99|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.102.44.15.210.58.113|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.122.119.115.35.143.187|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.122.119.115.51.143.187|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.122.119.115.67.143.187|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.122.119.115.83.143.187|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.122.119.115.99.143.187|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.130.193.240.80.231.55|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.144.154.74.221.235.3|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.144.154.74.221.235.5|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.146.174.227.208.52.43|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.196.147|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.197.57|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.197.69|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.197.76|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.202.212|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.190.221.194.36.203.205|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.224.212.98.102.160.80|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.224.225.169.118.154.63|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.244.45.6.162.185.70|2|3 +1.3.6.1.4.1.14179.2.1.7.1.25.244.111.237.139.122.192|2|3 +1.3.6.1.4.1.14179.2.1.7.1.26.0.25.190.163.231.194|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.0.103.98.11.175.24|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.2.25.190.163.231.194|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.60.132.106.136.204.30|2|11 +1.3.6.1.4.1.14179.2.1.7.1.26.60.132.106.159.175.130|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.68.209.250.117.93.125|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.82.2.145.214.19.243|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.82.2.145.214.20.216|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.82.2.145.214.26.19|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.96.34.50.251.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.96.34.50.251.52.99|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.155.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.155.52.99|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.171.52.98|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.171.52.99|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.187.52.99|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.98.34.50.203.52.99|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.102.44.15.210.58.113|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.122.119.115.35.143.187|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.122.119.115.51.143.187|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.122.119.115.67.143.187|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.122.119.115.83.143.187|2|44 +1.3.6.1.4.1.14179.2.1.7.1.26.122.119.115.99.143.187|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.130.193.240.80.231.55|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.144.154.74.221.235.3|2|7 +1.3.6.1.4.1.14179.2.1.7.1.26.144.154.74.221.235.5|2|7 +1.3.6.1.4.1.14179.2.1.7.1.26.146.174.227.208.52.43|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.196.147|2|11 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.197.57|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.197.69|2|1 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.197.76|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.202.212|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.190.221.194.36.203.205|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.224.212.98.102.160.80|2|6 +1.3.6.1.4.1.14179.2.1.7.1.26.224.225.169.118.154.63|2|11 +1.3.6.1.4.1.14179.2.1.7.1.26.244.45.6.162.185.70|2|9 +1.3.6.1.4.1.14179.2.1.7.1.26.244.111.237.139.122.192|2|1 +1.3.6.1.4.1.14179.2.1.7.1.27.0.25.190.163.231.194|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.0.103.98.11.175.24|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.14179.2.1.7.1.27.2.25.190.163.231.194|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.60.132.106.136.204.30|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.60.132.106.159.175.130|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.68.209.250.117.93.125|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.82.2.145.214.19.243|4x|4d41522d5344492d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.82.2.145.214.20.216|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.82.2.145.214.26.19|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.96.34.50.251.52.98|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.96.34.50.251.52.99|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.155.52.98|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.155.52.99|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.171.52.98|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.171.52.99|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.187.52.99|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.98.34.50.203.52.99|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.102.44.15.210.58.113|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.122.119.115.35.143.187|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.122.119.115.51.143.187|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.7.1.27.122.119.115.67.143.187|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.122.119.115.83.143.187|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.122.119.115.99.143.187|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.130.193.240.80.231.55|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.144.154.74.221.235.3|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.144.154.74.221.235.5|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.146.174.227.208.52.43|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.196.147|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.197.57|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.197.69|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.197.76|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.202.212|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.7.1.27.190.221.194.36.203.205|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.224.212.98.102.160.80|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.7.1.27.224.225.169.118.154.63|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.244.45.6.162.185.70|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.7.1.27.244.111.237.139.122.192|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.164.0.17|4x|087b871da400 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.205.32.17|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.24.249.53.103.175.0.17|4x|18f93567af00 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.24.249.53.225.42.224.17|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.88.139.28.8.178.160.17|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.25.190.163.231.194.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.8.1.1.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.8.1.1.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.29.205.32.17|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.24.249.53.103.175.0.17|4x|18f93567af00 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.24.249.53.225.42.224.17|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.88.139.28.8.178.160.17|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.1.8.1.1.2.25.190.163.231.194.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.60.132.106.136.204.30.8.123.135.28.170.96.17|4x|087b871caa60 +1.3.6.1.4.1.14179.2.1.8.1.1.60.132.106.159.175.130.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.8.1.1.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|18f935668660 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|588b1c086500 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.26.19.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.1.8.1.1.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.96.34.50.251.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.155.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.98.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.187.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.203.52.99.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.98.34.50.203.52.99.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.67.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.0.60.16.104.153.160.1|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.83.143.187.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.122.119.115.99.143.187.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.130.193.240.80.231.55.24.249.53.225.4.192.17|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.1.8.1.1.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.8.1.1.144.154.74.221.235.5.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.8.1.1.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|087b871de640 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|588b1c098480 +1.3.6.1.4.1.14179.2.1.8.1.1.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.8.1.1.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.1.8.1.1.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.1.8.1.1.244.45.6.162.185.70.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.244.45.6.162.185.70.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|087b871de660 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|18f935665700 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.14179.2.1.8.1.1.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.164.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.205.32.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.24.249.53.103.175.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.24.249.53.225.42.224.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.88.139.28.8.178.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.103.98.11.175.24.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.103.98.11.175.24.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.0.103.98.11.175.24.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.103.98.11.175.24.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.0.103.98.11.175.24.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.29.205.32.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.24.249.53.103.175.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.24.249.53.225.42.224.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.88.139.28.8.178.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.2.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.60.132.106.136.204.30.8.123.135.28.170.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.60.132.106.159.175.130.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.68.209.250.117.93.125.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.68.209.250.117.93.125.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.19.243.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.19.243.88.139.28.6.111.192.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.24.249.53.102.134.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.88.139.28.8.101.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.20.216.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.26.19.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.26.19.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.26.19.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.82.2.145.214.26.19.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.96.34.50.251.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.155.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.171.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.187.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.203.52.99.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.98.34.50.203.52.99.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.102.44.15.210.58.113.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.35.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.51.143.187.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.67.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.0.60.16.104.153.160.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.83.143.187.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.122.119.115.99.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.130.193.240.80.231.55.24.249.53.225.4.192.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.144.154.74.221.235.3.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.144.154.74.221.235.5.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.146.174.227.208.52.43.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.196.147.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.8.123.135.29.212.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.88.139.28.15.230.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.88.139.28.184.116.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.57.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.8.123.135.29.230.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.69.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.197.76.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.88.139.28.184.54.32.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.202.212.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.88.139.28.6.101.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.88.139.28.6.111.192.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.88.139.28.7.225.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.88.139.28.9.132.128.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.190.221.194.36.203.205.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.224.212.98.102.160.80.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.24.249.53.225.4.192.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.224.225.169.118.154.63.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.45.6.162.185.70.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.45.6.162.185.70.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.8.123.135.29.167.160.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.8.123.135.29.230.96.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.24.249.53.102.87.0.17|66|17 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.2.244.111.237.139.122.192.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.164.0.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.205.32.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.24.249.53.103.175.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.24.249.53.225.42.224.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.40.172.158.59.119.32.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.88.139.28.8.178.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.25.190.163.231.194.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.103.98.11.175.24.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.103.98.11.175.24.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.103.98.11.175.24.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.103.98.11.175.24.36.54.218.80.103.64.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.0.103.98.11.175.24.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.29.205.32.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.24.249.53.103.175.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.24.249.53.225.42.224.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.40.172.158.59.119.32.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.88.139.28.8.178.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.2.25.190.163.231.194.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.60.132.106.136.204.30.8.123.135.28.170.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.60.132.106.159.175.130.40.172.158.56.69.96.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.68.209.250.117.93.125.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.68.209.250.117.93.125.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.19.243.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.19.243.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.24.249.53.102.134.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.88.139.28.8.101.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.20.216.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.26.19.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.26.19.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.26.19.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.82.2.145.214.26.19.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.8.123.135.28.247.160.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.98.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.96.34.50.251.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.98.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.155.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.98.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.171.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.187.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.203.52.99.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.98.34.50.203.52.99.40.172.158.52.22.96.1|2|11 +1.3.6.1.4.1.14179.2.1.8.1.3.102.44.15.210.58.113.8.123.135.28.247.160.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.35.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.0.60.16.104.154.224.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.8.69.209.213.189.0.0|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.28.209.224.174.126.128.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.36.54.218.80.109.224.0|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.36.54.218.80.109.224.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.51.143.187.40.172.158.77.225.160.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.8.123.135.29.230.96.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.67.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.0.60.16.104.153.160.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.0.60.16.104.154.224.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.28.209.224.174.126.128.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.36.54.218.80.109.224.0|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.36.54.218.80.109.224.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.83.143.187.40.172.158.77.225.160.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.8.123.135.29.167.160.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.24.249.53.102.87.0.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.28.209.224.174.126.128.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.122.119.115.99.143.187.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.130.193.240.80.231.55.24.249.53.225.4.192.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.144.154.74.221.235.3.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.144.154.74.221.235.5.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.146.174.227.208.52.43.8.123.135.29.164.64.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.196.147.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.88.139.28.15.230.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.88.139.28.184.116.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.57.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.8.123.135.29.230.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.69.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.197.76.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.88.139.28.184.54.32.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.202.212.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.88.139.28.6.101.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.190.221.194.36.203.205.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.212.98.102.160.80.0.60.16.104.153.160.0|2|10 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.8.123.135.28.30.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.8.123.135.29.160.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.24.249.53.225.4.192.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.40.172.158.61.56.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.224.225.169.118.154.63.40.172.158.76.139.32.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.45.6.162.185.70.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.45.6.162.185.70.8.123.135.28.247.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.8.123.135.29.230.96.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.36.54.218.80.103.64.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.3.244.111.237.139.122.192.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.164.0.17|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.205.32.17|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.24.249.53.103.175.0.17|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.24.249.53.225.42.224.17|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.40.172.158.59.119.32.0|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.88.139.28.8.178.160.17|4x|4d41522d564d532d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.25.190.163.231.194.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.14179.2.1.8.1.4.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.29.205.32.17|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.24.249.53.103.175.0.17|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.24.249.53.225.42.224.17|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.40.172.158.59.119.32.0|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.88.139.28.8.178.160.17|4x|4d41522d564d532d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.2.25.190.163.231.194.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.60.132.106.136.204.30.8.123.135.28.170.96.17|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.60.132.106.159.175.130.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|4d41522d5344492d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.26.19.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.96.34.50.251.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.155.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.98.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.187.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.203.52.99.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.98.34.50.203.52.99.40.172.158.52.22.96.1|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.67.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.0.60.16.104.153.160.1|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.0.60.16.104.154.224.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.8.69.209.213.189.0.1|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.28.209.224.174.126.128.1|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.36.54.218.80.109.224.1|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.83.143.187.40.172.158.77.225.160.1|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.122.119.115.99.143.187.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.130.193.240.80.231.55.24.249.53.225.4.192.17|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.144.154.74.221.235.5.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|4d41522d5344492d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.8.1.4.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.14179.2.1.8.1.4.244.45.6.162.185.70.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.244.45.6.162.185.70.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.14179.2.1.8.1.4.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.0.103.98.11.175.24.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.0.103.98.11.175.24.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.0.103.98.11.175.24.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.0.103.98.11.175.24.36.54.218.80.103.64.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.0.103.98.11.175.24.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.60.132.106.136.204.30.8.123.135.28.170.96.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.60.132.106.159.175.130.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.68.209.250.117.93.125.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.68.209.250.117.93.125.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.19.243.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.19.243.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.24.249.53.102.134.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.88.139.28.8.101.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.20.216.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.26.19.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.26.19.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.26.19.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.82.2.145.214.26.19.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.96.34.50.251.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.155.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.171.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.187.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.203.52.99.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.98.34.50.203.52.99.40.172.158.52.22.96.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.102.44.15.210.58.113.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.35.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.8.69.209.213.189.0.0|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.8.69.209.213.189.0.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.28.209.224.174.126.128.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.36.54.218.80.109.224.0|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.36.54.218.80.109.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.51.143.187.40.172.158.77.225.160.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.67.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.0.60.16.104.153.160.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.0.60.16.104.154.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.8.69.209.213.189.0.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.28.209.224.174.126.128.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.36.54.218.80.109.224.0|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.36.54.218.80.109.224.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.83.143.187.40.172.158.77.225.160.1|2|44 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.8.123.135.29.167.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.122.119.115.99.143.187.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.144.154.74.221.235.3.8.123.135.29.164.64.17|2|7 +1.3.6.1.4.1.14179.2.1.8.1.5.144.154.74.221.235.5.8.123.135.29.164.64.17|2|7 +1.3.6.1.4.1.14179.2.1.8.1.5.146.174.227.208.52.43.8.123.135.29.164.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.0.60.16.104.153.160.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.8.69.209.213.189.0.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.8.123.135.28.30.64.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.8.123.135.29.167.160.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.24.249.53.102.87.0.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.28.209.224.174.126.128.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.40.172.158.52.22.96.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.40.172.158.52.31.224.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.40.172.158.73.197.128.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.196.147.40.172.158.77.225.160.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.8.123.135.29.212.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.24.249.53.102.87.0.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.88.139.28.15.230.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.88.139.28.184.116.64.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.57.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.69.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.197.76.0.223.29.42.246.64.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.88.139.28.184.54.32.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.202.212.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.8.123.135.29.230.96.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.36.54.218.80.92.0.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.36.54.218.80.101.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.36.54.218.80.109.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.40.172.158.59.131.224.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.88.139.28.6.101.160.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.88.139.28.6.111.192.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.88.139.28.7.225.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.88.139.28.9.132.128.17|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.190.221.194.36.203.205.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.224.212.98.102.160.80.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.8.123.135.28.30.64.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.8.123.135.29.160.64.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.24.249.53.225.4.192.17|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.40.172.158.61.56.192.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.40.172.158.69.128.160.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.40.172.158.73.198.96.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.224.225.169.118.154.63.40.172.158.76.139.32.0|2|11 +1.3.6.1.4.1.14179.2.1.8.1.5.244.45.6.162.185.70.8.69.209.213.189.0.0|2|9 +1.3.6.1.4.1.14179.2.1.8.1.5.244.45.6.162.185.70.8.123.135.28.247.160.17|2|9 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.5.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.28.30.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.160.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.164.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.167.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.205.32.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.212.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.8.123.135.29.230.64.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.24.249.53.102.87.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.24.249.53.103.175.0.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.24.249.53.225.42.224.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.40.172.158.59.119.32.0|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.40.172.158.59.131.224.0|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.40.172.158.73.197.128.0|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.40.172.158.73.198.96.0|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.88.139.28.8.178.160.17|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.25.190.163.231.194.244.219.230.228.7.192.0|4|FSCNAMMAINAP +1.3.6.1.4.1.14179.2.1.8.1.6.0.103.98.11.175.24.0.60.16.104.153.160.0|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.8.1.6.0.103.98.11.175.24.8.123.135.29.164.64.17|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.8.1.6.0.103.98.11.175.24.28.209.224.174.126.128.0|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.8.1.6.0.103.98.11.175.24.36.54.218.80.103.64.0|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.8.1.6.0.103.98.11.175.24.40.172.158.77.225.160.0|4x|426d69726b5f31 +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.0.60.16.104.154.224.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.28.247.160.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.29.160.64.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.29.167.160.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.29.205.32.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.29.212.160.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.8.123.135.29.230.64.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.24.249.53.102.87.0.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.24.249.53.103.175.0.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.24.249.53.225.42.224.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.40.172.158.59.119.32.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.40.172.158.59.131.224.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.40.172.158.73.197.128.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.40.172.158.73.198.96.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.88.139.28.8.178.160.17|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.2.25.190.163.231.194.244.219.230.228.7.192.0|4|TEST +1.3.6.1.4.1.14179.2.1.8.1.6.60.132.106.136.204.30.8.123.135.28.170.96.17|4|samonte +1.3.6.1.4.1.14179.2.1.8.1.6.60.132.106.159.175.130.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.68.209.250.117.93.125.0.60.16.104.154.224.0|4x|454e532057692d46692041502032 +1.3.6.1.4.1.14179.2.1.8.1.6.68.209.250.117.93.125.40.172.158.52.22.96.0|4x|454e532057692d46692041502032 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.19.243.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3039 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.19.243.88.139.28.6.111.192.17|4x|4d6172696c616f5f436c6f636b5f3039 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.24.249.53.102.134.96.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.36.54.218.80.92.0.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.88.139.28.8.101.0.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.20.216.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3035 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.26.19.8.123.135.29.212.160.17|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.26.19.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.26.19.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.14179.2.1.8.1.6.82.2.145.214.26.19.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3036 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.0.60.16.104.154.224.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.8.123.135.28.30.64.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.8.123.135.28.247.160.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.8.123.135.29.160.64.17|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.40.172.158.52.22.96.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.40.172.158.69.128.160.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.40.172.158.73.197.128.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.98.40.172.158.77.225.160.0|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.96.34.50.251.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.0.60.16.104.154.224.0|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.8.123.135.28.30.64.17|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.8.123.135.28.247.160.17|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.8.123.135.29.160.64.17|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.40.172.158.52.22.96.0|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.40.172.158.69.128.160.0|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.40.172.158.73.197.128.0|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.98.40.172.158.77.225.160.0|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.99.0.60.16.104.154.224.1|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.155.52.99.40.172.158.52.22.96.1|4x|4641535447726f75702d4775657374 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.99.0.60.16.104.154.224.1|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.171.52.99.40.172.158.52.22.96.1|4x|666c637365632d6170 +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.187.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.203.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.98.34.50.203.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.102.44.15.210.58.113.8.123.135.28.247.160.17|4x|7669766f2031393135 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.0.60.16.104.153.160.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.8.69.209.213.189.0.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.8.123.135.29.167.160.17|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.24.249.53.102.87.0.17|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.28.209.224.174.126.128.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.36.54.218.80.109.224.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.40.172.158.52.31.224.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.35.143.187.40.172.158.77.225.160.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.0.60.16.104.154.224.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.8.69.209.213.189.0.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.8.69.209.213.189.0.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.28.209.224.174.126.128.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.36.54.218.80.109.224.0|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.36.54.218.80.109.224.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.51.143.187.40.172.158.77.225.160.1|4x|4e41492d535441524c494e4b2032 +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.67.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.0.60.16.104.153.160.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.83.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.122.119.115.99.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.6.130.193.240.80.231.55.24.249.53.225.4.192.17|4|MV84104853 +1.3.6.1.4.1.14179.2.1.8.1.6.144.154.74.221.235.3.8.123.135.29.164.64.17|4x|54502d4c696e6b5f45423033 +1.3.6.1.4.1.14179.2.1.8.1.6.144.154.74.221.235.5.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.6.146.174.227.208.52.43.8.123.135.29.164.64.17|4x|496e66696e697820484f5420333020504c4159 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.8.123.135.28.30.64.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.8.123.135.29.167.160.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.24.249.53.102.87.0.17|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.40.172.158.52.22.96.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.40.172.158.73.197.128.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.196.147.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3135 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.8.123.135.29.212.160.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.24.249.53.102.87.0.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.28.209.224.173.249.0.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.36.54.218.80.101.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.88.139.28.15.230.128.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.88.139.28.184.116.64.17|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.57.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3136 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.0.60.16.104.154.224.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.8.123.135.28.247.160.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.8.123.135.29.160.64.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.8.123.135.29.230.64.17|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.40.172.158.52.22.96.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.40.172.158.69.128.160.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.40.172.158.73.197.128.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.69.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3037 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.197.76.0.223.29.42.246.64.0|4x|4d6172696c616f5f436c6f636b5f3034 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.28.209.224.173.249.0.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.28.209.224.174.126.128.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.40.172.158.77.225.160.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.88.139.28.184.54.32.17|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.202.212.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3038 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.0.60.16.104.153.160.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.8.69.209.213.189.0.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.8.123.135.29.230.96.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.36.54.218.80.92.0.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.36.54.218.80.101.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.36.54.218.80.109.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.40.172.158.52.31.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.40.172.158.56.69.96.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.40.172.158.59.131.224.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.40.172.158.61.47.192.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.88.139.28.6.101.160.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.88.139.28.6.111.192.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.88.139.28.7.225.128.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.88.139.28.9.132.128.17|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.190.221.194.36.203.205.244.219.230.228.7.192.0|4x|4d6172696c616f5f436c6f636b5f3137 +1.3.6.1.4.1.14179.2.1.8.1.6.224.212.98.102.160.80.0.60.16.104.153.160.0|4x|4855415745492d313034305130 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.8.123.135.28.30.64.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.8.123.135.29.160.64.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.24.249.53.225.4.192.17|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.40.172.158.61.56.192.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.40.172.158.69.128.160.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.40.172.158.73.198.96.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.224.225.169.118.154.63.40.172.158.76.139.32.0|4x|434f4d464153545f394133445f3247 +1.3.6.1.4.1.14179.2.1.8.1.6.244.45.6.162.185.70.8.69.209.213.189.0.0|4|PLDTHOMEFIBRXP96n +1.3.6.1.4.1.14179.2.1.8.1.6.244.45.6.162.185.70.8.123.135.28.247.160.17|4|PLDTHOMEFIBRXP96n +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.0.60.16.104.153.160.0|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.8.69.209.213.189.0.0|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.8.123.135.29.167.160.17|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.8.123.135.29.230.96.17|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.24.249.53.102.87.0.17|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.28.209.224.174.126.128.0|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.36.54.218.80.103.64.0|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.6.244.111.237.139.122.192.40.172.158.59.131.224.0|4x|4d56492031 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.28.30.64.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.160.64.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.164.0.17|2|-67 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.167.160.17|2|-55 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.205.32.17|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.212.160.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.8.123.135.29.230.64.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.24.249.53.102.87.0.17|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.24.249.53.103.175.0.17|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.24.249.53.225.42.224.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.40.172.158.59.119.32.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.40.172.158.59.131.224.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.40.172.158.73.197.128.0|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.40.172.158.73.198.96.0|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.88.139.28.8.178.160.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.0.25.190.163.231.194.244.219.230.228.7.192.0|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.0.103.98.11.175.24.0.60.16.104.153.160.0|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.0.103.98.11.175.24.8.123.135.29.164.64.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.0.103.98.11.175.24.28.209.224.174.126.128.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.0.103.98.11.175.24.36.54.218.80.103.64.0|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.0.103.98.11.175.24.40.172.158.77.225.160.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.0.60.16.104.154.224.0|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.28.247.160.17|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.29.160.64.17|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.29.167.160.17|2|-55 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.29.205.32.17|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.29.212.160.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.8.123.135.29.230.64.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.24.249.53.102.87.0.17|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.24.249.53.103.175.0.17|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.24.249.53.225.42.224.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.40.172.158.59.119.32.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.40.172.158.59.131.224.0|2|-69 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.40.172.158.73.197.128.0|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.40.172.158.73.198.96.0|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.88.139.28.8.178.160.17|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.2.25.190.163.231.194.244.219.230.228.7.192.0|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.60.132.106.136.204.30.8.123.135.28.170.96.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.60.132.106.159.175.130.40.172.158.56.69.96.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.68.209.250.117.93.125.0.60.16.104.154.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.68.209.250.117.93.125.40.172.158.52.22.96.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.19.243.40.172.158.59.131.224.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.19.243.88.139.28.6.111.192.17|2|-46 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.8.123.135.29.230.96.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.24.249.53.102.134.96.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.36.54.218.80.92.0.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.40.172.158.56.69.96.0|2|-62 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.40.172.158.59.131.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.40.172.158.61.47.192.0|2|-69 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.88.139.28.8.101.0.17|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.88.139.28.9.132.128.17|2|-59 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.20.216.244.219.230.228.7.192.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.26.19.8.123.135.29.212.160.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.26.19.40.172.158.56.69.96.0|2|-63 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.26.19.40.172.158.61.47.192.0|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.82.2.145.214.26.19.88.139.28.9.132.128.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.0.60.16.104.154.224.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.8.123.135.28.30.64.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.8.123.135.28.247.160.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.8.123.135.29.160.64.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.40.172.158.52.22.96.0|2|-63 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.40.172.158.69.128.160.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.40.172.158.73.197.128.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.98.40.172.158.77.225.160.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.99.0.60.16.104.154.224.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.96.34.50.251.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.0.60.16.104.154.224.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.8.123.135.28.30.64.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.8.123.135.28.247.160.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.8.123.135.29.160.64.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.40.172.158.52.22.96.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.40.172.158.69.128.160.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.40.172.158.73.197.128.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.98.40.172.158.77.225.160.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.99.0.60.16.104.154.224.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.155.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.0.60.16.104.154.224.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.8.123.135.28.247.160.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.8.123.135.29.160.64.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.40.172.158.52.22.96.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.40.172.158.69.128.160.0|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.40.172.158.73.197.128.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.98.40.172.158.77.225.160.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.99.0.60.16.104.154.224.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.171.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.187.52.99.0.60.16.104.154.224.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.203.52.99.0.60.16.104.154.224.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.98.34.50.203.52.99.40.172.158.52.22.96.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.102.44.15.210.58.113.8.123.135.28.247.160.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.0.60.16.104.153.160.0|2|-50 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.8.69.209.213.189.0.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.8.123.135.29.167.160.17|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.28.209.224.174.126.128.0|2|-66 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.36.54.218.80.109.224.0|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.35.143.187.40.172.158.77.225.160.0|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.0.60.16.104.154.224.1|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.8.69.209.213.189.0.0|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.8.69.209.213.189.0.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.28.209.224.174.126.128.1|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.36.54.218.80.109.224.0|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.36.54.218.80.109.224.1|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.51.143.187.40.172.158.77.225.160.1|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.0.60.16.104.153.160.0|2|-50 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.8.123.135.29.167.160.17|2|-63 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.8.123.135.29.230.96.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.24.249.53.102.87.0.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.28.209.224.174.126.128.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.36.54.218.80.109.224.0|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.67.143.187.40.172.158.77.225.160.0|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.0.60.16.104.153.160.1|2|-50 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.0.60.16.104.154.224.1|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.8.69.209.213.189.0.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.28.209.224.174.126.128.1|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.36.54.218.80.109.224.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.36.54.218.80.109.224.1|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.83.143.187.40.172.158.77.225.160.1|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.0.60.16.104.153.160.0|2|-48 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.8.69.209.213.189.0.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.8.123.135.29.167.160.17|2|-62 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.28.209.224.174.126.128.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.36.54.218.80.109.224.0|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.40.172.158.52.31.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.122.119.115.99.143.187.40.172.158.77.225.160.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.130.193.240.80.231.55.24.249.53.225.4.192.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.144.154.74.221.235.3.8.123.135.29.164.64.17|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.144.154.74.221.235.5.8.123.135.29.164.64.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.146.174.227.208.52.43.8.123.135.29.164.64.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.0.60.16.104.153.160.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.8.69.209.213.189.0.0|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.8.123.135.28.30.64.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.8.123.135.29.167.160.17|2|-53 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.24.249.53.102.87.0.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.28.209.224.174.126.128.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.36.54.218.80.109.224.0|2|-55 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.40.172.158.52.22.96.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.40.172.158.52.31.224.0|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.40.172.158.73.197.128.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.196.147.40.172.158.77.225.160.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.0.60.16.104.153.160.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.8.69.209.213.189.0.0|2|-60 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.8.123.135.29.212.160.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.8.123.135.29.230.96.17|2|-69 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.24.249.53.102.87.0.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.28.209.224.173.249.0.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.28.209.224.174.126.128.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.36.54.218.80.101.224.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.36.54.218.80.109.224.0|2|-58 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.40.172.158.52.31.224.0|2|-62 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.40.172.158.59.131.224.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.88.139.28.7.225.128.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.88.139.28.15.230.128.17|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.88.139.28.184.116.64.17|2|-61 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.57.244.219.230.228.7.192.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.0.60.16.104.154.224.0|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.8.123.135.28.247.160.17|2|-67 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.8.123.135.29.160.64.17|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.8.123.135.29.230.64.17|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.40.172.158.52.22.96.0|2|-61 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.40.172.158.69.128.160.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.40.172.158.73.197.128.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.69.40.172.158.77.225.160.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.197.76.0.223.29.42.246.64.0|2|-52 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.0.60.16.104.153.160.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.8.69.209.213.189.0.0|2|-61 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.8.123.135.29.230.96.17|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.28.209.224.173.249.0.0|2|-63 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.28.209.224.174.126.128.0|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.36.54.218.80.109.224.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.40.172.158.52.31.224.0|2|-67 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.40.172.158.56.69.96.0|2|-79 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.40.172.158.59.131.224.0|2|-64 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.40.172.158.77.225.160.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.88.139.28.7.225.128.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.88.139.28.184.54.32.17|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.202.212.244.219.230.228.7.192.0|2|-69 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.0.60.16.104.153.160.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.8.69.209.213.189.0.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.8.123.135.29.230.96.17|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.36.54.218.80.92.0.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.36.54.218.80.101.224.0|2|-67 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.36.54.218.80.109.224.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.40.172.158.52.31.224.0|2|-68 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.40.172.158.56.69.96.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.40.172.158.59.131.224.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.40.172.158.61.47.192.0|2|-76 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.88.139.28.6.101.160.17|2|-63 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.88.139.28.6.111.192.17|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.88.139.28.7.225.128.17|2|-69 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.88.139.28.9.132.128.17|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.190.221.194.36.203.205.244.219.230.228.7.192.0|2|-65 +1.3.6.1.4.1.14179.2.1.8.1.7.224.212.98.102.160.80.0.60.16.104.153.160.0|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.8.123.135.28.30.64.17|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.8.123.135.29.160.64.17|2|-61 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.24.249.53.225.4.192.17|2|-56 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.40.172.158.61.56.192.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.40.172.158.69.128.160.0|2|-75 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.40.172.158.73.198.96.0|2|-70 +1.3.6.1.4.1.14179.2.1.8.1.7.224.225.169.118.154.63.40.172.158.76.139.32.0|2|-62 +1.3.6.1.4.1.14179.2.1.8.1.7.244.45.6.162.185.70.8.69.209.213.189.0.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.244.45.6.162.185.70.8.123.135.28.247.160.17|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.0.60.16.104.153.160.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.8.69.209.213.189.0.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.8.123.135.29.167.160.17|2|-72 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.8.123.135.29.230.96.17|2|-71 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.24.249.53.102.87.0.17|2|-77 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.28.209.224.174.126.128.0|2|-73 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.36.54.218.80.103.64.0|2|-74 +1.3.6.1.4.1.14179.2.1.8.1.7.244.111.237.139.122.192.40.172.158.59.131.224.0|2|-78 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.2.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.26.19.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.155.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.83.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.8.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.164.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.205.32.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.24.249.53.103.175.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.24.249.53.225.42.224.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.88.139.28.8.178.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.103.98.11.175.24.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.103.98.11.175.24.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.103.98.11.175.24.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.103.98.11.175.24.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.0.103.98.11.175.24.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.29.205.32.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.24.249.53.103.175.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.24.249.53.225.42.224.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.88.139.28.8.178.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.2.25.190.163.231.194.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.60.132.106.136.204.30.8.123.135.28.170.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.60.132.106.159.175.130.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.68.209.250.117.93.125.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.68.209.250.117.93.125.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.19.243.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.19.243.88.139.28.6.111.192.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.24.249.53.102.134.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.88.139.28.8.101.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.20.216.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.26.19.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.26.19.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.26.19.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.82.2.145.214.26.19.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.96.34.50.251.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.155.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.98.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.171.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.187.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.203.52.99.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.98.34.50.203.52.99.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.102.44.15.210.58.113.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.35.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.51.143.187.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.67.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.83.143.187.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.122.119.115.99.143.187.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.130.193.240.80.231.55.24.249.53.225.4.192.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.144.154.74.221.235.3.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.144.154.74.221.235.5.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.146.174.227.208.52.43.8.123.135.29.164.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.196.147.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.8.123.135.29.212.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.88.139.28.15.230.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.88.139.28.184.116.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.57.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.8.123.135.29.230.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.69.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.197.76.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.88.139.28.184.54.32.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.202.212.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.88.139.28.6.101.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.88.139.28.6.111.192.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.88.139.28.7.225.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.88.139.28.9.132.128.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.190.221.194.36.203.205.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.212.98.102.160.80.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.8.123.135.28.30.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.8.123.135.29.160.64.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.24.249.53.225.4.192.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.224.225.169.118.154.63.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.45.6.162.185.70.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.45.6.162.185.70.8.123.135.28.247.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.8.123.135.29.167.160.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.8.123.135.29.230.96.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.24.249.53.102.87.0.17|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.9.244.111.237.139.122.192.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.164.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.205.32.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.24.249.53.103.175.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.24.249.53.225.42.224.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.40.172.158.59.119.32.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.88.139.28.8.178.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.25.190.163.231.194.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.103.98.11.175.24.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.103.98.11.175.24.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.103.98.11.175.24.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.103.98.11.175.24.36.54.218.80.103.64.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.0.103.98.11.175.24.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.29.205.32.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.24.249.53.103.175.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.24.249.53.225.42.224.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.40.172.158.59.119.32.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.88.139.28.8.178.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.2.25.190.163.231.194.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.60.132.106.136.204.30.8.123.135.28.170.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.60.132.106.159.175.130.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.68.209.250.117.93.125.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.68.209.250.117.93.125.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.19.243.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.19.243.88.139.28.6.111.192.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.24.249.53.102.134.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.36.54.218.80.92.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.88.139.28.8.101.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.20.216.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.26.19.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.26.19.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.26.19.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.82.2.145.214.26.19.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.96.34.50.251.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.155.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.98.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.171.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.187.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.203.52.99.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.98.34.50.203.52.99.40.172.158.52.22.96.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.102.44.15.210.58.113.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.35.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.51.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.67.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.0.60.16.104.153.160.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.0.60.16.104.154.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.8.69.209.213.189.0.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.28.209.224.174.126.128.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.36.54.218.80.109.224.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.83.143.187.40.172.158.77.225.160.1|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.122.119.115.99.143.187.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.130.193.240.80.231.55.24.249.53.225.4.192.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.144.154.74.221.235.3.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.144.154.74.221.235.5.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.146.174.227.208.52.43.8.123.135.29.164.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.196.147.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.8.123.135.29.212.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.28.209.224.173.249.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.36.54.218.80.101.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.88.139.28.15.230.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.88.139.28.184.116.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.57.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.0.60.16.104.154.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.8.123.135.29.230.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.40.172.158.52.22.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.40.172.158.73.197.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.69.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.197.76.0.223.29.42.246.64.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.28.209.224.173.249.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.40.172.158.77.225.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.88.139.28.184.54.32.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.202.212.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.36.54.218.80.92.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.36.54.218.80.101.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.36.54.218.80.109.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.40.172.158.52.31.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.40.172.158.56.69.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.40.172.158.61.47.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.88.139.28.6.101.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.88.139.28.6.111.192.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.88.139.28.7.225.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.88.139.28.9.132.128.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.190.221.194.36.203.205.244.219.230.228.7.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.212.98.102.160.80.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.8.123.135.28.30.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.8.123.135.29.160.64.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.24.249.53.225.4.192.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.40.172.158.61.56.192.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.40.172.158.69.128.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.40.172.158.73.198.96.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.224.225.169.118.154.63.40.172.158.76.139.32.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.45.6.162.185.70.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.45.6.162.185.70.8.123.135.28.247.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.0.60.16.104.153.160.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.8.69.209.213.189.0.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.8.123.135.29.167.160.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.8.123.135.29.230.96.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.24.249.53.102.87.0.17|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.28.209.224.174.126.128.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.36.54.218.80.103.64.0|4| +1.3.6.1.4.1.14179.2.1.8.1.10.244.111.237.139.122.192.40.172.158.59.131.224.0|4| +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.28.30.64.17|65|45 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.160.64.17|65|12 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.164.0.17|65|35 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.167.160.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.205.32.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.212.160.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.8.123.135.29.230.64.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.24.249.53.102.87.0.17|65|13 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.24.249.53.103.175.0.17|65|14 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.24.249.53.225.42.224.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.40.172.158.59.119.32.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.40.172.158.59.131.224.0|65|8 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.40.172.158.73.197.128.0|65|18 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.40.172.158.73.198.96.0|65|24 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.88.139.28.8.178.160.17|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.0.25.190.163.231.194.244.219.230.228.7.192.0|65|9 +1.3.6.1.4.1.14179.2.1.8.1.11.0.103.98.11.175.24.0.60.16.104.153.160.0|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.0.103.98.11.175.24.8.123.135.29.164.64.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.0.103.98.11.175.24.28.209.224.174.126.128.0|65|628 +1.3.6.1.4.1.14179.2.1.8.1.11.0.103.98.11.175.24.36.54.218.80.103.64.0|65|256 +1.3.6.1.4.1.14179.2.1.8.1.11.0.103.98.11.175.24.40.172.158.77.225.160.0|65|772 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.0.60.16.104.154.224.0|65|27 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.28.247.160.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.29.160.64.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.29.167.160.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.29.205.32.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.29.212.160.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.8.123.135.29.230.64.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.24.249.53.102.87.0.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.24.249.53.103.175.0.17|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.24.249.53.225.42.224.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.40.172.158.59.119.32.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.40.172.158.59.131.224.0|65|8 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.40.172.158.73.197.128.0|65|18 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.40.172.158.73.198.96.0|65|24 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.88.139.28.8.178.160.17|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.2.25.190.163.231.194.244.219.230.228.7.192.0|65|9 +1.3.6.1.4.1.14179.2.1.8.1.11.60.132.106.136.204.30.8.123.135.28.170.96.17|65|72 +1.3.6.1.4.1.14179.2.1.8.1.11.60.132.106.159.175.130.40.172.158.56.69.96.0|65|309 +1.3.6.1.4.1.14179.2.1.8.1.11.68.209.250.117.93.125.0.60.16.104.154.224.0|65|237 +1.3.6.1.4.1.14179.2.1.8.1.11.68.209.250.117.93.125.40.172.158.52.22.96.0|65|1127 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.19.243.40.172.158.59.131.224.0|65|218 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.19.243.88.139.28.6.111.192.17|65|1 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.8.69.209.213.189.0.0|65|45 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.8.123.135.29.230.96.17|65|732 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.24.249.53.102.134.96.17|65|414 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.36.54.218.80.92.0.0|65|227 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.40.172.158.52.31.224.0|65|578 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.40.172.158.56.69.96.0|65|9 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.40.172.158.59.131.224.0|65|218 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.40.172.158.61.47.192.0|65|221 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.88.139.28.8.101.0.17|65|85 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.88.139.28.9.132.128.17|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.20.216.244.219.230.228.7.192.0|65|219 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.26.19.8.123.135.29.212.160.17|65|123 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.26.19.40.172.158.56.69.96.0|65|9 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.26.19.40.172.158.61.47.192.0|65|251 +1.3.6.1.4.1.14179.2.1.8.1.11.82.2.145.214.26.19.88.139.28.9.132.128.17|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.0.60.16.104.154.224.0|65|27 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.8.123.135.28.30.64.17|65|405 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.8.123.135.28.247.160.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.8.123.135.29.160.64.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.40.172.158.52.22.96.0|65|137 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.40.172.158.69.128.160.0|65|137 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.40.172.158.73.197.128.0|65|18 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.98.40.172.158.77.225.160.0|65|322 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.99.0.60.16.104.154.224.1|65|119 +1.3.6.1.4.1.14179.2.1.8.1.11.96.34.50.251.52.99.40.172.158.52.22.96.1|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.0.60.16.104.154.224.0|65|27 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.8.123.135.28.30.64.17|65|405 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.8.123.135.28.247.160.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.8.123.135.29.160.64.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.40.172.158.52.22.96.0|65|137 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.40.172.158.69.128.160.0|65|467 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.40.172.158.73.197.128.0|65|18 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.98.40.172.158.77.225.160.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.99.0.60.16.104.154.224.1|65|119 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.155.52.99.40.172.158.52.22.96.1|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.0.60.16.104.154.224.0|65|27 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.8.123.135.28.247.160.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.8.123.135.29.160.64.17|65|20 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.40.172.158.52.22.96.0|65|137 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.40.172.158.69.128.160.0|65|137 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.40.172.158.73.197.128.0|65|18 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.98.40.172.158.77.225.160.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.99.0.60.16.104.154.224.1|65|479 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.171.52.99.40.172.158.52.22.96.1|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.187.52.99.0.60.16.104.154.224.1|65|119 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.203.52.99.0.60.16.104.154.224.1|65|119 +1.3.6.1.4.1.14179.2.1.8.1.11.98.34.50.203.52.99.40.172.158.52.22.96.1|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.102.44.15.210.58.113.8.123.135.28.247.160.17|65|981 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.0.60.16.104.153.160.0|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.8.69.209.213.189.0.0|65|15 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.8.123.135.29.167.160.17|65|192 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.24.249.53.102.87.0.17|65|93 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.28.209.224.174.126.128.0|65|268 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.36.54.218.80.109.224.0|65|16 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.40.172.158.52.31.224.0|65|248 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.35.143.187.40.172.158.77.225.160.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.0.60.16.104.154.224.1|65|1169 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.8.69.209.213.189.0.0|65|585 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.8.69.209.213.189.0.1|65|255 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.28.209.224.174.126.128.1|65|149 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.36.54.218.80.109.224.0|65|106 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.36.54.218.80.109.224.1|65|226 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.51.143.187.40.172.158.77.225.160.1|65|142 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.0.60.16.104.153.160.0|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.8.69.209.213.189.0.0|65|45 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.8.123.135.29.167.160.17|65|192 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.8.123.135.29.230.96.17|65|650 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.24.249.53.102.87.0.17|65|93 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.28.209.224.174.126.128.0|65|58 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.36.54.218.80.109.224.0|65|16 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.40.172.158.52.31.224.0|65|218 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.67.143.187.40.172.158.77.225.160.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.0.60.16.104.153.160.1|65|512 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.0.60.16.104.154.224.1|65|479 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.8.69.209.213.189.0.1|65|255 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.28.209.224.174.126.128.1|65|1049 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.36.54.218.80.109.224.0|65|106 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.36.54.218.80.109.224.1|65|226 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.83.143.187.40.172.158.77.225.160.1|65|322 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.0.60.16.104.153.160.0|65|29 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.8.69.209.213.189.0.0|65|15 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.8.123.135.29.167.160.17|65|192 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.24.249.53.102.87.0.17|65|333 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.28.209.224.174.126.128.0|65|658 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.36.54.218.80.109.224.0|65|346 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.40.172.158.52.31.224.0|65|878 +1.3.6.1.4.1.14179.2.1.8.1.11.122.119.115.99.143.187.40.172.158.77.225.160.0|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.130.193.240.80.231.55.24.249.53.225.4.192.17|65|293 +1.3.6.1.4.1.14179.2.1.8.1.11.144.154.74.221.235.3.8.123.135.29.164.64.17|65|353 +1.3.6.1.4.1.14179.2.1.8.1.11.144.154.74.221.235.5.8.123.135.29.164.64.17|65|673 +1.3.6.1.4.1.14179.2.1.8.1.11.146.174.227.208.52.43.8.123.135.29.164.64.17|65|153 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.0.60.16.104.153.160.0|65|209 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.8.69.209.213.189.0.0|65|405 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.8.123.135.28.30.64.17|65|145 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.8.123.135.29.167.160.17|65|182 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.24.249.53.102.87.0.17|65|83 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.28.209.224.174.126.128.0|65|28 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.36.54.218.80.109.224.0|65|16 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.40.172.158.52.22.96.0|65|707 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.40.172.158.52.31.224.0|65|8 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.40.172.158.73.197.128.0|65|108 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.196.147.40.172.158.77.225.160.0|65|202 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.0.60.16.104.153.160.0|65|419 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.8.69.209.213.189.0.0|65|15 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.8.123.135.29.212.160.17|65|853 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.8.123.135.29.230.96.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.24.249.53.102.87.0.17|65|334 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.28.209.224.173.249.0.0|65|250 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.28.209.224.174.126.128.0|65|269 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.36.54.218.80.101.224.0|65|585 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.36.54.218.80.109.224.0|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.40.172.158.52.31.224.0|65|249 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.40.172.158.59.131.224.0|65|219 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.88.139.28.7.225.128.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.88.139.28.15.230.128.17|65|162 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.88.139.28.184.116.64.17|65|166 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.57.244.219.230.228.7.192.0|65|220 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.0.60.16.104.154.224.0|65|28 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.8.123.135.28.247.160.17|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.8.123.135.29.160.64.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.8.123.135.29.230.64.17|65|24 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.40.172.158.52.22.96.0|65|138 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.40.172.158.69.128.160.0|65|468 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.40.172.158.73.197.128.0|65|19 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.69.40.172.158.77.225.160.0|65|1013 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.197.76.0.223.29.42.246.64.0|65|3 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.0.60.16.104.153.160.0|65|30 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.8.69.209.213.189.0.0|65|16 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.8.123.135.29.230.96.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.28.209.224.173.249.0.0|65|40 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.28.209.224.174.126.128.0|65|89 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.36.54.218.80.109.224.0|65|47 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.40.172.158.52.31.224.0|65|249 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.40.172.158.56.69.96.0|65|790 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.40.172.158.59.131.224.0|65|219 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.40.172.158.77.225.160.0|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.88.139.28.7.225.128.17|65|245 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.88.139.28.184.54.32.17|65|670 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.202.212.244.219.230.228.7.192.0|65|250 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.0.60.16.104.153.160.0|65|210 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.8.69.209.213.189.0.0|65|16 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.8.123.135.29.230.96.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.36.54.218.80.92.0.0|65|228 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.36.54.218.80.101.224.0|65|255 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.36.54.218.80.109.224.0|65|17 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.40.172.158.52.31.224.0|65|219 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.40.172.158.56.69.96.0|65|10 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.40.172.158.59.131.224.0|65|249 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.40.172.158.61.47.192.0|65|222 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.88.139.28.6.101.160.17|65|213 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.88.139.28.6.111.192.17|65|872 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.88.139.28.7.225.128.17|65|23 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.88.139.28.9.132.128.17|65|30 +1.3.6.1.4.1.14179.2.1.8.1.11.190.221.194.36.203.205.244.219.230.228.7.192.0|65|220 +1.3.6.1.4.1.14179.2.1.8.1.11.224.212.98.102.160.80.0.60.16.104.153.160.0|65|150 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.8.123.135.28.30.64.17|65|24 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.8.123.135.29.160.64.17|65|844 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.24.249.53.225.4.192.17|65|96 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.40.172.158.61.56.192.0|65|1196 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.40.172.158.69.128.160.0|65|888 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.40.172.158.73.198.96.0|65|235 +1.3.6.1.4.1.14179.2.1.8.1.11.224.225.169.118.154.63.40.172.158.76.139.32.0|65|19 +1.3.6.1.4.1.14179.2.1.8.1.11.244.45.6.162.185.70.8.69.209.213.189.0.0|65|1096 +1.3.6.1.4.1.14179.2.1.8.1.11.244.45.6.162.185.70.8.123.135.28.247.160.17|65|185 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.0.60.16.104.153.160.0|65|510 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.8.69.209.213.189.0.0|65|556 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.8.123.135.29.167.160.17|65|21 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.8.123.135.29.230.96.17|65|13 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.24.249.53.102.87.0.17|65|22 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.28.209.224.174.126.128.0|65|719 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.36.54.218.80.103.64.0|65|317 +1.3.6.1.4.1.14179.2.1.8.1.11.244.111.237.139.122.192.40.172.158.59.131.224.0|65|9 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.103.98.11.175.24.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.103.98.11.175.24.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.103.98.11.175.24.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.103.98.11.175.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.0.103.98.11.175.24.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.60.132.106.136.204.30.8.123.135.28.170.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.60.132.106.159.175.130.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.19.243.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.19.243.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.24.249.53.102.134.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.88.139.28.8.101.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.20.216.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.26.19.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.26.19.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.26.19.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.82.2.145.214.26.19.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.96.34.50.251.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.155.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.171.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.102.44.15.210.58.113.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.35.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.144.154.74.221.235.3.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.12.146.174.227.208.52.43.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.196.147.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.88.139.28.15.230.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.88.139.28.184.116.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.57.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.69.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.197.76.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.88.139.28.184.54.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.202.212.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.88.139.28.6.101.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.88.139.28.6.111.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.88.139.28.7.225.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.88.139.28.9.132.128.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.190.221.194.36.203.205.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.212.98.102.160.80.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.224.225.169.118.154.63.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.45.6.162.185.70.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.45.6.162.185.70.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.12.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.60.132.106.159.175.130.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.68.209.250.117.93.125.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.68.209.250.117.93.125.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.26.19.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.155.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.98.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.35.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.67.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.122.119.115.99.143.187.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.130.193.240.80.231.55.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.224.212.98.102.160.80.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.24.249.53.225.4.192.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.224.225.169.118.154.63.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.244.45.6.162.185.70.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.244.45.6.162.185.70.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.13.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.29.205.32.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.29.212.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.8.123.135.29.230.64.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.88.139.28.8.178.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.2.25.190.163.231.194.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.26.19.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.96.34.50.251.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.155.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.171.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.187.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.203.52.99.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.98.34.50.203.52.99.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.51.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.83.143.187.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.8.123.135.29.167.160.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.8.123.135.29.230.96.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.24.249.53.102.87.0.17|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.14.244.111.237.139.122.192.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.28.30.64.17|2|-20 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.160.64.17|2|-20 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.167.160.17|2|40 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.205.32.17|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.212.160.17|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.8.123.135.29.230.64.17|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.24.249.53.103.175.0.17|2|-20 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.24.249.53.225.42.224.17|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.40.172.158.59.119.32.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.40.172.158.59.131.224.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.40.172.158.73.197.128.0|2|23 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.40.172.158.73.198.96.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.88.139.28.8.178.160.17|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.0.25.190.163.231.194.244.219.230.228.7.192.0|2|31 +1.3.6.1.4.1.14179.2.1.8.1.27.0.103.98.11.175.24.0.60.16.104.153.160.0|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.0.103.98.11.175.24.8.123.135.29.164.64.17|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.0.103.98.11.175.24.28.209.224.174.126.128.0|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.0.103.98.11.175.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.27.0.103.98.11.175.24.40.172.158.77.225.160.0|2|8 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.0.60.16.104.154.224.0|2|29 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.28.247.160.17|2|27 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.29.160.64.17|2|29 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.29.167.160.17|2|40 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.29.205.32.17|2|27 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.29.212.160.17|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.8.123.135.29.230.64.17|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.24.249.53.102.87.0.17|2|24 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.24.249.53.103.175.0.17|2|29 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.24.249.53.225.42.224.17|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.40.172.158.59.119.32.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.40.172.158.59.131.224.0|2|26 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.40.172.158.73.197.128.0|2|23 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.40.172.158.73.198.96.0|2|29 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.88.139.28.8.178.160.17|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.2.25.190.163.231.194.244.219.230.228.7.192.0|2|31 +1.3.6.1.4.1.14179.2.1.8.1.27.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.68.209.250.117.93.125.0.60.16.104.154.224.0|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.68.209.250.117.93.125.40.172.158.52.22.96.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.19.243.40.172.158.59.131.224.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.19.243.88.139.28.6.111.192.17|2|49 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.8.69.209.213.189.0.0|2|15 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.36.54.218.80.92.0.0|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.40.172.158.56.69.96.0|2|33 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.88.139.28.9.132.128.17|2|36 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.20.216.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.26.19.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.26.19.40.172.158.56.69.96.0|2|32 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.26.19.40.172.158.61.47.192.0|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.82.2.145.214.26.19.88.139.28.9.132.128.17|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.0.60.16.104.154.224.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.8.123.135.28.247.160.17|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.8.123.135.29.160.64.17|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.40.172.158.52.22.96.0|2|32 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.40.172.158.69.128.160.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.98.40.172.158.77.225.160.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.99.0.60.16.104.154.224.1|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.96.34.50.251.52.99.40.172.158.52.22.96.1|2|6 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.0.60.16.104.154.224.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.8.123.135.28.247.160.17|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.8.123.135.29.160.64.17|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.40.172.158.52.22.96.0|2|30 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.40.172.158.69.128.160.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.99.0.60.16.104.154.224.1|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.155.52.99.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.0.60.16.104.154.224.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.8.123.135.28.247.160.17|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.8.123.135.29.160.64.17|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.40.172.158.52.22.96.0|2|30 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.40.172.158.69.128.160.0|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.40.172.158.73.197.128.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.98.40.172.158.77.225.160.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.99.0.60.16.104.154.224.1|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.171.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.187.52.99.0.60.16.104.154.224.1|2|15 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.203.52.99.0.60.16.104.154.224.1|2|15 +1.3.6.1.4.1.14179.2.1.8.1.27.98.34.50.203.52.99.40.172.158.52.22.96.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.27.102.44.15.210.58.113.8.123.135.28.247.160.17|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.0.60.16.104.153.160.0|2|45 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.8.69.209.213.189.0.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.28.209.224.174.126.128.0|2|29 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.36.54.218.80.109.224.0|2|23 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.35.143.187.40.172.158.77.225.160.0|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.0.60.16.104.154.224.1|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.28.209.224.174.126.128.1|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.36.54.218.80.109.224.0|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.36.54.218.80.109.224.1|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.51.143.187.40.172.158.77.225.160.1|2|5 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.0.60.16.104.153.160.0|2|45 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.8.69.209.213.189.0.0|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.8.123.135.29.230.96.17|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.28.209.224.174.126.128.0|2|30 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.36.54.218.80.109.224.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.67.143.187.40.172.158.77.225.160.0|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.0.60.16.104.153.160.1|2|45 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.0.60.16.104.154.224.1|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.8.69.209.213.189.0.1|2|9 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.28.209.224.174.126.128.1|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.36.54.218.80.109.224.1|2|14 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.83.143.187.40.172.158.77.225.160.1|2|13 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.0.60.16.104.153.160.0|2|47 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.8.69.209.213.189.0.0|2|12 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.28.209.224.174.126.128.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.40.172.158.52.31.224.0|2|7 +1.3.6.1.4.1.14179.2.1.8.1.27.122.119.115.99.143.187.40.172.158.77.225.160.0|2|12 +1.3.6.1.4.1.14179.2.1.8.1.27.130.193.240.80.231.55.24.249.53.225.4.192.17|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.144.154.74.221.235.3.8.123.135.29.164.64.17|2|13 +1.3.6.1.4.1.14179.2.1.8.1.27.144.154.74.221.235.5.8.123.135.29.164.64.17|2|10 +1.3.6.1.4.1.14179.2.1.8.1.27.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.0.60.16.104.153.160.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.8.69.209.213.189.0.0|2|24 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.28.209.224.174.126.128.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.36.54.218.80.109.224.0|2|37 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.40.172.158.52.22.96.0|2|10 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.40.172.158.52.31.224.0|2|24 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.40.172.158.73.197.128.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.196.147.40.172.158.77.225.160.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.0.60.16.104.153.160.0|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.8.69.209.213.189.0.0|2|10 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.8.123.135.29.230.96.17|2|26 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.28.209.224.173.249.0.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.28.209.224.174.126.128.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.36.54.218.80.109.224.0|2|35 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.40.172.158.59.131.224.0|2|30 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.88.139.28.7.225.128.17|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.0.60.16.104.154.224.0|2|24 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.8.123.135.28.247.160.17|2|28 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.8.123.135.29.160.64.17|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.8.123.135.29.230.64.17|2|16 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.40.172.158.52.22.96.0|2|34 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.40.172.158.69.128.160.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.40.172.158.73.197.128.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.69.40.172.158.77.225.160.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.197.76.0.223.29.42.246.64.0|2|43 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.0.60.16.104.153.160.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.8.69.209.213.189.0.0|2|31 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.8.123.135.29.230.96.17|2|23 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.28.209.224.173.249.0.0|2|32 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.28.209.224.174.126.128.0|2|24 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.40.172.158.52.31.224.0|2|28 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.40.172.158.56.69.96.0|2|7 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.40.172.158.77.225.160.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.202.212.244.219.230.228.7.192.0|2|26 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.0.60.16.104.153.160.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.8.69.209.213.189.0.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.8.123.135.29.230.96.17|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.36.54.218.80.92.0.0|2|14 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.36.54.218.80.101.224.0|2|26 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.36.54.218.80.109.224.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.40.172.158.56.69.96.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.88.139.28.6.111.192.17|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.88.139.28.7.225.128.17|2|26 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.88.139.28.9.132.128.17|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.190.221.194.36.203.205.244.219.230.228.7.192.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.27.224.212.98.102.160.80.0.60.16.104.153.160.0|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.8.123.135.28.30.64.17|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.40.172.158.61.56.192.0|2|20 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.40.172.158.69.128.160.0|2|9 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.40.172.158.73.198.96.0|2|25 +1.3.6.1.4.1.14179.2.1.8.1.27.224.225.169.118.154.63.40.172.158.76.139.32.0|2|33 +1.3.6.1.4.1.14179.2.1.8.1.27.244.45.6.162.185.70.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.27.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.0.60.16.104.153.160.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.8.69.209.213.189.0.0|2|19 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.8.123.135.29.167.160.17|2|23 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.24.249.53.102.87.0.17|2|18 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.28.209.224.174.126.128.0|2|22 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.36.54.218.80.103.64.0|2|21 +1.3.6.1.4.1.14179.2.1.8.1.27.244.111.237.139.122.192.40.172.158.59.131.224.0|2|17 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.164.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.205.32.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.24.249.53.103.175.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.24.249.53.225.42.224.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.88.139.28.8.178.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.25.190.163.231.194.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.0.103.98.11.175.24.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.0.103.98.11.175.24.8.123.135.29.164.64.17|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.0.103.98.11.175.24.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.0.103.98.11.175.24.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.0.103.98.11.175.24.40.172.158.77.225.160.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.29.205.32.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.24.249.53.103.175.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.24.249.53.225.42.224.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.88.139.28.8.178.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.2.25.190.163.231.194.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.60.132.106.136.204.30.8.123.135.28.170.96.17|2|5 +1.3.6.1.4.1.14179.2.1.8.1.28.60.132.106.159.175.130.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.68.209.250.117.93.125.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.68.209.250.117.93.125.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.19.243.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.19.243.88.139.28.6.111.192.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.24.249.53.102.134.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.88.139.28.8.101.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.20.216.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.26.19.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.26.19.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.26.19.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.82.2.145.214.26.19.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.96.34.50.251.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.155.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.98.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.171.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.187.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.203.52.99.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.98.34.50.203.52.99.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.102.44.15.210.58.113.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.35.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.0.60.16.104.154.224.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.8.69.209.213.189.0.0|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.28.209.224.174.126.128.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.36.54.218.80.109.224.0|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.36.54.218.80.109.224.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.51.143.187.40.172.158.77.225.160.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.67.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.0.60.16.104.153.160.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.0.60.16.104.154.224.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.28.209.224.174.126.128.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.36.54.218.80.109.224.0|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.36.54.218.80.109.224.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.83.143.187.40.172.158.77.225.160.1|2|8 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.122.119.115.99.143.187.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.130.193.240.80.231.55.24.249.53.225.4.192.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.144.154.74.221.235.3.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.144.154.74.221.235.5.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.146.174.227.208.52.43.8.123.135.29.164.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.8.123.135.29.167.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.196.147.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.8.123.135.29.212.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.24.249.53.102.87.0.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.88.139.28.15.230.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.88.139.28.184.116.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.57.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.8.123.135.28.247.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.8.123.135.29.230.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.69.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.197.76.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.88.139.28.184.54.32.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.202.212.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.8.123.135.29.230.96.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.88.139.28.6.101.160.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.88.139.28.6.111.192.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.88.139.28.7.225.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.88.139.28.9.132.128.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.190.221.194.36.203.205.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.212.98.102.160.80.0.60.16.104.153.160.0|2|5 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.8.123.135.28.30.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.8.123.135.29.160.64.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.24.249.53.225.4.192.17|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.224.225.169.118.154.63.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.14179.2.1.8.1.28.244.45.6.162.185.70.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.45.6.162.185.70.8.123.135.28.247.160.17|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.8.123.135.29.167.160.17|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.8.123.135.29.230.96.17|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.24.249.53.102.87.0.17|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.28.244.111.237.139.122.192.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.103.98.11.175.24.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.103.98.11.175.24.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.103.98.11.175.24.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.103.98.11.175.24.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.0.103.98.11.175.24.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.29.205.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.88.139.28.8.178.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.2.25.190.163.231.194.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.60.132.106.136.204.30.8.123.135.28.170.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.60.132.106.159.175.130.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.68.209.250.117.93.125.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.68.209.250.117.93.125.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.19.243.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.19.243.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.24.249.53.102.134.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.88.139.28.8.101.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.20.216.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.26.19.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.26.19.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.26.19.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.82.2.145.214.26.19.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.96.34.50.251.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.155.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.98.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.171.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.187.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.203.52.99.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.98.34.50.203.52.99.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.102.44.15.210.58.113.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.35.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.51.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.67.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.83.143.187.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.122.119.115.99.143.187.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.130.193.240.80.231.55.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.144.154.74.221.235.3.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.144.154.74.221.235.5.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.146.174.227.208.52.43.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.196.147.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.8.123.135.29.212.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.88.139.28.15.230.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.88.139.28.184.116.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.57.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.8.123.135.29.230.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.69.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.197.76.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.88.139.28.184.54.32.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.202.212.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.88.139.28.6.101.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.88.139.28.6.111.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.88.139.28.7.225.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.88.139.28.9.132.128.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.190.221.194.36.203.205.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.212.98.102.160.80.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.24.249.53.225.4.192.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.224.225.169.118.154.63.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.45.6.162.185.70.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.45.6.162.185.70.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.8.123.135.29.167.160.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.8.123.135.29.230.96.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.24.249.53.102.87.0.17|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.1.8.1.29.244.111.237.139.122.192.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.11.1.1.80.166.216.175.120.254.0.60.16.104.154.224.1.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.11.1.1.80.166.216.175.120.254.0.60.16.104.154.224.1.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.11.1.1.152.170.252.36.113.90.8.123.135.28.247.160.1.0|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.11.1.1.152.170.252.36.113.90.8.123.135.28.247.160.1.1|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.11.1.2.80.166.216.175.120.254.0.60.16.104.154.224.1.0|66|1 +1.3.6.1.4.1.14179.2.1.11.1.2.80.166.216.175.120.254.0.60.16.104.154.224.1.1|66|1 +1.3.6.1.4.1.14179.2.1.11.1.2.152.170.252.36.113.90.8.123.135.28.247.160.1.0|66|1 +1.3.6.1.4.1.14179.2.1.11.1.2.152.170.252.36.113.90.8.123.135.28.247.160.1.1|66|1 +1.3.6.1.4.1.14179.2.1.11.1.3.80.166.216.175.120.254.0.60.16.104.154.224.1.0|2|2 +1.3.6.1.4.1.14179.2.1.11.1.3.80.166.216.175.120.254.0.60.16.104.154.224.1.1|2|2 +1.3.6.1.4.1.14179.2.1.11.1.3.152.170.252.36.113.90.8.123.135.28.247.160.1.0|2|2 +1.3.6.1.4.1.14179.2.1.11.1.3.152.170.252.36.113.90.8.123.135.28.247.160.1.1|2|2 +1.3.6.1.4.1.14179.2.1.11.1.4.80.166.216.175.120.254.0.60.16.104.154.224.1.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.11.1.4.80.166.216.175.120.254.0.60.16.104.154.224.1.1|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.11.1.4.152.170.252.36.113.90.8.123.135.28.247.160.1.0|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.11.1.4.152.170.252.36.113.90.8.123.135.28.247.160.1.1|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.11.1.5.80.166.216.175.120.254.0.60.16.104.154.224.1.0|2|-69 +1.3.6.1.4.1.14179.2.1.11.1.5.80.166.216.175.120.254.0.60.16.104.154.224.1.1|2|-69 +1.3.6.1.4.1.14179.2.1.11.1.5.152.170.252.36.113.90.8.123.135.28.247.160.1.0|2|-89 +1.3.6.1.4.1.14179.2.1.11.1.5.152.170.252.36.113.90.8.123.135.28.247.160.1.1|2|-89 +1.3.6.1.4.1.14179.2.1.11.1.6.80.166.216.175.120.254.0.60.16.104.154.224.1.0|66|0 +1.3.6.1.4.1.14179.2.1.11.1.6.80.166.216.175.120.254.0.60.16.104.154.224.1.1|66|1 +1.3.6.1.4.1.14179.2.1.11.1.6.152.170.252.36.113.90.8.123.135.28.247.160.1.0|66|0 +1.3.6.1.4.1.14179.2.1.11.1.6.152.170.252.36.113.90.8.123.135.28.247.160.1.1|66|1 +1.3.6.1.4.1.14179.2.1.11.1.25.80.166.216.175.120.254.0.60.16.104.154.224.1.0|2|7 +1.3.6.1.4.1.14179.2.1.11.1.25.80.166.216.175.120.254.0.60.16.104.154.224.1.1|2|7 +1.3.6.1.4.1.14179.2.1.11.1.25.152.170.252.36.113.90.8.123.135.28.247.160.1.0|2|4 +1.3.6.1.4.1.14179.2.1.11.1.25.152.170.252.36.113.90.8.123.135.28.247.160.1.1|2|4 +1.3.6.1.4.1.14179.2.1.13.1.1.9.103.115.97.116.105.101.110.122.97.80.166.216.175.120.254|4|gsatienza +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.99.100.102.56.12.35.105.15.205.248|4|0c23690fcdf8 +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.99.101.50.101.12.35.105.15.206.46|4|0c23690fce2e +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.99.102.49.97.12.35.105.15.207.26|4|0c23690fcf1a +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.99.102.100.54.12.35.105.15.207.214|4|0c23690fcfd6 +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.100.48.53.56.12.35.105.15.208.88|4|0c23690fd058 +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.100.49.54.48.12.35.105.15.209.96|4|0c23690fd160 +1.3.6.1.4.1.14179.2.1.13.1.1.12.48.99.50.51.54.57.48.102.100.49.97.54.12.35.105.15.209.166|4|0c23690fd1a6 +1.3.6.1.4.1.14179.2.1.13.1.1.12.53.48.48.50.57.49.100.54.49.51.102.51.80.2.145.214.19.243|4|500291d613f3 +1.3.6.1.4.1.14179.2.1.13.1.1.12.53.48.48.50.57.49.100.54.49.52.100.56.80.2.145.214.20.216|4|500291d614d8 +1.3.6.1.4.1.14179.2.1.13.1.1.12.53.48.48.50.57.49.100.54.49.97.49.51.80.2.145.214.26.19|4|500291d61a13 +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.52.57.51.188.221.194.36.196.147|4|bcddc224c493 +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.53.51.57.188.221.194.36.197.57|4|bcddc224c539 +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.53.52.53.188.221.194.36.197.69|4|bcddc224c545 +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.53.52.99.188.221.194.36.197.76|4|bcddc224c54c +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.97.100.52.188.221.194.36.202.212|4|bcddc224cad4 +1.3.6.1.4.1.14179.2.1.13.1.1.12.98.99.100.100.99.50.50.52.99.98.99.100.188.221.194.36.203.205|4|bcddc224cbcd +1.3.6.1.4.1.14179.2.1.13.1.1.17.83.65.70.73.45.85.70.67.92.82.86.77.97.114.99.111.115.140.248.197.1.94.110|4x|534146492d5546435c5c52564d6172636f73 +1.3.6.1.4.1.14179.2.1.13.1.1.18.83.65.70.73.45.85.70.67.92.74.66.83.97.108.105.110.111.103.116.58.244.35.33.112|4x|534146492d5546435c5c4a4253616c696e6f67 +1.3.6.1.4.1.14179.2.1.13.1.1.18.83.65.70.73.45.85.70.67.92.102.103.97.110.97.108.121.115.116.144.15.12.69.125.29|4x|534146492d5546435c5c6667616e616c797374 +1.3.6.1.4.1.14179.2.1.13.1.1.19.83.65.70.73.45.85.70.67.92.87.81.66.97.108.97.103.116.97.115.140.248.197.172.142.231|4x|534146492d5546435c5c575142616c6167746173 +1.3.6.1.4.1.14179.2.1.13.1.2.9.103.115.97.116.105.101.110.122.97.80.166.216.175.120.254|4x|50a6d8af78fe +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.99.100.102.56.12.35.105.15.205.248|4x|0c23690fcdf8 +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.99.101.50.101.12.35.105.15.206.46|4x|0c23690fce2e +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.99.102.49.97.12.35.105.15.207.26|4x|0c23690fcf1a +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.99.102.100.54.12.35.105.15.207.214|4x|0c23690fcfd6 +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.100.48.53.56.12.35.105.15.208.88|4x|0c23690fd058 +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.100.49.54.48.12.35.105.15.209.96|4x|0c23690fd160 +1.3.6.1.4.1.14179.2.1.13.1.2.12.48.99.50.51.54.57.48.102.100.49.97.54.12.35.105.15.209.166|4x|0c23690fd1a6 +1.3.6.1.4.1.14179.2.1.13.1.2.12.53.48.48.50.57.49.100.54.49.51.102.51.80.2.145.214.19.243|4x|500291d613f3 +1.3.6.1.4.1.14179.2.1.13.1.2.12.53.48.48.50.57.49.100.54.49.52.100.56.80.2.145.214.20.216|4x|500291d614d8 +1.3.6.1.4.1.14179.2.1.13.1.2.12.53.48.48.50.57.49.100.54.49.97.49.51.80.2.145.214.26.19|4x|500291d61a13 +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.52.57.51.188.221.194.36.196.147|4x|bcddc224c493 +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.53.51.57.188.221.194.36.197.57|4x|bcddc224c539 +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.53.52.53.188.221.194.36.197.69|4x|bcddc224c545 +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.53.52.99.188.221.194.36.197.76|4x|bcddc224c54c +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.97.100.52.188.221.194.36.202.212|4x|bcddc224cad4 +1.3.6.1.4.1.14179.2.1.13.1.2.12.98.99.100.100.99.50.50.52.99.98.99.100.188.221.194.36.203.205|4x|bcddc224cbcd +1.3.6.1.4.1.14179.2.1.13.1.2.17.83.65.70.73.45.85.70.67.92.82.86.77.97.114.99.111.115.140.248.197.1.94.110|4x|8cf8c5015e6e +1.3.6.1.4.1.14179.2.1.13.1.2.18.83.65.70.73.45.85.70.67.92.74.66.83.97.108.105.110.111.103.116.58.244.35.33.112|4x|743af4232170 +1.3.6.1.4.1.14179.2.1.13.1.2.18.83.65.70.73.45.85.70.67.92.102.103.97.110.97.108.121.115.116.144.15.12.69.125.29|4x|900f0c457d1d +1.3.6.1.4.1.14179.2.1.13.1.2.19.83.65.70.73.45.85.70.67.92.87.81.66.97.108.97.103.116.97.115.140.248.197.172.142.231|4x|8cf8c5ac8ee7 +1.3.6.1.4.1.14179.2.1.14.1.1.0.25.190.163.215.50|4x|0019bea3d732 +1.3.6.1.4.1.14179.2.1.14.1.1.24.239.58.51.23.218|4x|18ef3a3317da +1.3.6.1.4.1.14179.2.1.14.1.1.46.20.14.75.185.108|4x|2e140e4bb96c +1.3.6.1.4.1.14179.2.1.14.1.1.62.240.156.87.248.163|4x|3ef09c57f8a3 +1.3.6.1.4.1.14179.2.1.14.1.1.64.176.118.144.45.13|4x|40b076902d0d +1.3.6.1.4.1.14179.2.1.14.1.1.78.225.190.186.202.133|4x|4ee1bebaca85 +1.3.6.1.4.1.14179.2.1.14.1.1.86.71.181.209.89.119|4x|5647b5d15977 +1.3.6.1.4.1.14179.2.1.14.1.1.208.194.78.18.208.160|4x|d0c24e12d0a0 +1.3.6.1.4.1.14179.2.1.14.1.1.210.200.94.109.244.160|4x|d2c85e6df4a0 +1.3.6.1.4.1.14179.2.1.14.1.1.242.117.185.62.239.105|4x|f275b93eef69 +1.3.6.1.4.1.14179.2.1.14.1.2.0.25.190.163.215.50|2|6 +1.3.6.1.4.1.14179.2.1.14.1.2.24.239.58.51.23.218|2|1 +1.3.6.1.4.1.14179.2.1.14.1.2.46.20.14.75.185.108|2|1 +1.3.6.1.4.1.14179.2.1.14.1.2.62.240.156.87.248.163|2|6 +1.3.6.1.4.1.14179.2.1.14.1.2.64.176.118.144.45.13|2|2 +1.3.6.1.4.1.14179.2.1.14.1.2.78.225.190.186.202.133|2|1 +1.3.6.1.4.1.14179.2.1.14.1.2.86.71.181.209.89.119|2|1 +1.3.6.1.4.1.14179.2.1.14.1.2.208.194.78.18.208.160|2|5 +1.3.6.1.4.1.14179.2.1.14.1.2.210.200.94.109.244.160|2|1 +1.3.6.1.4.1.14179.2.1.14.1.2.242.117.185.62.239.105|2|1 +1.3.6.1.4.1.14179.2.1.14.1.3.0.25.190.163.215.50|4x|22467269204a756c2031322030393a32393a30332032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.24.239.58.51.23.218|4x|224d6f6e205365702020322031363a34323a34372032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.46.20.14.75.185.108|4x|224d6f6e205365702020322032333a32363a31332032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.62.240.156.87.248.163|4x|224d6f6e205365702020322032313a33323a30382032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.64.176.118.144.45.13|4x|224d6f6e205365702020322031363a30333a35312032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.78.225.190.186.202.133|4x|224d6f6e205365702020322032333a32383a31382032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.86.71.181.209.89.119|4x|224d6f6e205365702020322031393a33393a30382032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.208.194.78.18.208.160|4x|22546875204175672032322031303a30323a33322032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.210.200.94.109.244.160|4x|224d6f6e205365702020322032333a31343a34322032303234 +1.3.6.1.4.1.14179.2.1.14.1.3.242.117.185.62.239.105|4x|224d6f6e205365702020322032333a31393a31312032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.0.25.190.163.215.50|4x|224d6f6e205365702020322032333a33373a35322032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.24.239.58.51.23.218|4x|224d6f6e205365702020322032333a33373a34372032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.46.20.14.75.185.108|4x|224d6f6e205365702020322032333a32363a31332032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.62.240.156.87.248.163|4x|224d6f6e205365702020322032333a33353a30392032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.64.176.118.144.45.13|4x|224d6f6e205365702020322032333a33303a30382032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.78.225.190.186.202.133|4x|224d6f6e205365702020322032333a33333a34382032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.86.71.181.209.89.119|4x|224d6f6e205365702020322032333a33373a33382032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.208.194.78.18.208.160|4x|224d6f6e205365702020322032333a33373a33382032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.210.200.94.109.244.160|4x|224d6f6e205365702020322032333a33363a33382032303234 +1.3.6.1.4.1.14179.2.1.14.1.4.242.117.185.62.239.105|4x|224d6f6e205365702020322032333a31393a31312032303234 +1.3.6.1.4.1.14179.2.1.14.1.5.0.25.190.163.215.50|4x|0019bea3e7c2 +1.3.6.1.4.1.14179.2.1.14.1.5.24.239.58.51.23.218|4x|3c846a9faf82 +1.3.6.1.4.1.14179.2.1.14.1.5.46.20.14.75.185.108|4x|909a4addeb05 +1.3.6.1.4.1.14179.2.1.14.1.5.62.240.156.87.248.163|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.14.1.5.64.176.118.144.45.13|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.14.1.5.78.225.190.186.202.133|4x|f46fed8b7ac0 +1.3.6.1.4.1.14179.2.1.14.1.5.86.71.181.209.89.119|4x|44d1fa755d7d +1.3.6.1.4.1.14179.2.1.14.1.5.208.194.78.18.208.160|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.14.1.5.210.200.94.109.244.160|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.14.1.5.242.117.185.62.239.105|4x|f42d06a2b946 +1.3.6.1.4.1.14179.2.1.14.1.6.0.25.190.163.215.50|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.24.239.58.51.23.218|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.46.20.14.75.185.108|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.62.240.156.87.248.163|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.64.176.118.144.45.13|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.78.225.190.186.202.133|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.86.71.181.209.89.119|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.208.194.78.18.208.160|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.210.200.94.109.244.160|2|0 +1.3.6.1.4.1.14179.2.1.14.1.6.242.117.185.62.239.105|2|0 +1.3.6.1.4.1.14179.2.1.14.1.7.0.25.190.163.215.50|2|1 +1.3.6.1.4.1.14179.2.1.14.1.7.24.239.58.51.23.218|2|6 +1.3.6.1.4.1.14179.2.1.14.1.7.46.20.14.75.185.108|2|700 +1.3.6.1.4.1.14179.2.1.14.1.7.62.240.156.87.248.163|2|164 +1.3.6.1.4.1.14179.2.1.14.1.7.64.176.118.144.45.13|2|465 +1.3.6.1.4.1.14179.2.1.14.1.7.78.225.190.186.202.133|2|245 +1.3.6.1.4.1.14179.2.1.14.1.7.86.71.181.209.89.119|2|15 +1.3.6.1.4.1.14179.2.1.14.1.7.208.194.78.18.208.160|2|15 +1.3.6.1.4.1.14179.2.1.14.1.7.210.200.94.109.244.160|2|75 +1.3.6.1.4.1.14179.2.1.14.1.7.242.117.185.62.239.105|2|1122 +1.3.6.1.4.1.14179.2.1.14.1.24.0.25.190.163.215.50|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.24.239.58.51.23.218|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.46.20.14.75.185.108|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.62.240.156.87.248.163|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.64.176.118.144.45.13|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.78.225.190.186.202.133|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.86.71.181.209.89.119|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.208.194.78.18.208.160|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.210.200.94.109.244.160|2|2 +1.3.6.1.4.1.14179.2.1.14.1.24.242.117.185.62.239.105|2|2 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.8.123.135.28.30.64.17|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.8.123.135.29.9.128.17|4x|087b871d0980 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.8.123.135.29.164.0.17|4x|087b871da400 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.24.249.53.103.175.0.17|4x|18f93567af00 +1.3.6.1.4.1.14179.2.1.15.1.1.0.25.190.163.215.50.24.249.53.225.42.224.17|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.1.15.1.1.24.239.58.51.23.218.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.1.15.1.1.46.20.14.75.185.108.8.123.135.29.164.64.17|4x|087b871da440 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.15.1.1.62.240.156.87.248.163.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.1.15.1.1.64.176.118.144.45.13.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.15.1.1.64.176.118.144.45.13.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.15.1.1.78.225.190.186.202.133.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.1.15.1.1.86.71.181.209.89.119.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.15.1.1.208.194.78.18.208.160.8.123.135.28.247.160.17|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.1.15.1.1.208.194.78.18.208.160.8.123.135.29.160.64.17|4x|087b871da040 +1.3.6.1.4.1.14179.2.1.15.1.1.208.194.78.18.208.160.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.1.15.1.1.208.194.78.18.208.160.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.15.1.1.208.194.78.18.208.160.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.1.15.1.1.210.200.94.109.244.160.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.1.15.1.1.242.117.185.62.239.105.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.8.123.135.28.30.64.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.8.123.135.29.9.128.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.8.123.135.29.164.0.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.24.249.53.103.175.0.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.0.25.190.163.215.50.24.249.53.225.42.224.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.24.239.58.51.23.218.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.46.20.14.75.185.108.8.123.135.29.164.64.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.62.240.156.87.248.163.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.64.176.118.144.45.13.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.64.176.118.144.45.13.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.78.225.190.186.202.133.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.86.71.181.209.89.119.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.208.194.78.18.208.160.8.123.135.28.247.160.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.208.194.78.18.208.160.8.123.135.29.160.64.17|66|17 +1.3.6.1.4.1.14179.2.1.15.1.2.208.194.78.18.208.160.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.208.194.78.18.208.160.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.208.194.78.18.208.160.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.210.200.94.109.244.160.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.2.242.117.185.62.239.105.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.8.123.135.29.9.128.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.0.25.190.163.215.50.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.24.239.58.51.23.218.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.46.20.14.75.185.108.8.123.135.29.164.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.62.240.156.87.248.163.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.64.176.118.144.45.13.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.64.176.118.144.45.13.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.78.225.190.186.202.133.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.86.71.181.209.89.119.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.208.194.78.18.208.160.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.208.194.78.18.208.160.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.208.194.78.18.208.160.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.208.194.78.18.208.160.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.208.194.78.18.208.160.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.210.200.94.109.244.160.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.3.242.117.185.62.239.105.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.8.123.135.28.30.64.17|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.8.123.135.29.9.128.17|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.8.123.135.29.164.0.17|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.24.249.53.103.175.0.17|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.0.25.190.163.215.50.24.249.53.225.42.224.17|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.24.239.58.51.23.218.40.172.158.56.69.96.0|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.1.15.1.4.46.20.14.75.185.108.8.123.135.29.164.64.17|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.0.60.16.104.154.224.0|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.62.240.156.87.248.163.244.219.230.228.7.192.0|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.64.176.118.144.45.13.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.64.176.118.144.45.13.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.78.225.190.186.202.133.40.172.158.59.131.224.0|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.1.15.1.4.86.71.181.209.89.119.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.208.194.78.18.208.160.8.123.135.28.247.160.17|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.208.194.78.18.208.160.8.123.135.29.160.64.17|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.1.15.1.4.208.194.78.18.208.160.40.172.158.52.22.96.0|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.1.15.1.4.208.194.78.18.208.160.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.208.194.78.18.208.160.40.172.158.77.225.160.0|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.1.15.1.4.210.200.94.109.244.160.40.172.158.73.197.128.0|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.1.15.1.4.242.117.185.62.239.105.8.69.209.213.189.0.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.8.123.135.28.30.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.8.123.135.29.9.128.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.8.123.135.29.164.0.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.24.249.53.103.175.0.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.0.25.190.163.215.50.24.249.53.225.42.224.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.24.239.58.51.23.218.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.1.15.1.5.46.20.14.75.185.108.8.123.135.29.164.64.17|2|7 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.62.240.156.87.248.163.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.64.176.118.144.45.13.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.64.176.118.144.45.13.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.78.225.190.186.202.133.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.86.71.181.209.89.119.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.208.194.78.18.208.160.8.123.135.28.247.160.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.208.194.78.18.208.160.8.123.135.29.160.64.17|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.208.194.78.18.208.160.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.208.194.78.18.208.160.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.208.194.78.18.208.160.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.210.200.94.109.244.160.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.1.15.1.5.242.117.185.62.239.105.8.69.209.213.189.0.0|2|9 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.8.123.135.28.30.64.17|2|-71 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.8.123.135.29.9.128.17|2|-78 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.8.123.135.29.160.64.17|2|-66 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.8.123.135.29.164.0.17|2|-80 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.24.249.53.103.175.0.17|2|-74 +1.3.6.1.4.1.14179.2.1.15.1.7.0.25.190.163.215.50.24.249.53.225.42.224.17|2|-65 +1.3.6.1.4.1.14179.2.1.15.1.7.24.239.58.51.23.218.40.172.158.56.69.96.0|2|-79 +1.3.6.1.4.1.14179.2.1.15.1.7.46.20.14.75.185.108.8.123.135.29.164.64.17|2|-127 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.0.60.16.104.154.224.0|2|-80 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.8.123.135.28.247.160.17|2|-75 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.8.123.135.29.160.64.17|2|-74 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.40.172.158.52.22.96.0|2|-78 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.40.172.158.73.197.128.0|2|-72 +1.3.6.1.4.1.14179.2.1.15.1.7.62.240.156.87.248.163.244.219.230.228.7.192.0|2|-127 +1.3.6.1.4.1.14179.2.1.15.1.7.64.176.118.144.45.13.8.123.135.28.247.160.17|2|-64 +1.3.6.1.4.1.14179.2.1.15.1.7.64.176.118.144.45.13.40.172.158.73.197.128.0|2|-75 +1.3.6.1.4.1.14179.2.1.15.1.7.78.225.190.186.202.133.40.172.158.59.131.224.0|2|-127 +1.3.6.1.4.1.14179.2.1.15.1.7.86.71.181.209.89.119.40.172.158.73.197.128.0|2|-127 +1.3.6.1.4.1.14179.2.1.15.1.7.208.194.78.18.208.160.8.123.135.28.247.160.17|2|-75 +1.3.6.1.4.1.14179.2.1.15.1.7.208.194.78.18.208.160.8.123.135.29.160.64.17|2|-74 +1.3.6.1.4.1.14179.2.1.15.1.7.208.194.78.18.208.160.40.172.158.52.22.96.0|2|-61 +1.3.6.1.4.1.14179.2.1.15.1.7.208.194.78.18.208.160.40.172.158.73.197.128.0|2|-67 +1.3.6.1.4.1.14179.2.1.15.1.7.208.194.78.18.208.160.40.172.158.77.225.160.0|2|-70 +1.3.6.1.4.1.14179.2.1.15.1.7.210.200.94.109.244.160.40.172.158.73.197.128.0|2|-80 +1.3.6.1.4.1.14179.2.1.15.1.7.242.117.185.62.239.105.8.69.209.213.189.0.0|2|-127 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.8.123.135.28.30.64.17|4|23 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.8.123.135.29.9.128.17|4|50 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.8.123.135.29.160.64.17|4|0 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.8.123.135.29.164.0.17|4|103 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.24.249.53.103.175.0.17|4|2 +1.3.6.1.4.1.14179.2.1.15.1.11.0.25.190.163.215.50.24.249.53.225.42.224.17|4|80 +1.3.6.1.4.1.14179.2.1.15.1.11.24.239.58.51.23.218.40.172.158.56.69.96.0|4|7 +1.3.6.1.4.1.14179.2.1.15.1.11.46.20.14.75.185.108.8.123.135.29.164.64.17|4|701 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.0.60.16.104.154.224.0|4|655 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.8.123.135.28.247.160.17|4|502 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.8.123.135.29.160.64.17|4|921 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.40.172.158.52.22.96.0|4|165 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.40.172.158.73.197.128.0|4|886 +1.3.6.1.4.1.14179.2.1.15.1.11.62.240.156.87.248.163.244.219.230.228.7.192.0|4|937 +1.3.6.1.4.1.14179.2.1.15.1.11.64.176.118.144.45.13.8.123.135.28.247.160.17|4|662 +1.3.6.1.4.1.14179.2.1.15.1.11.64.176.118.144.45.13.40.172.158.73.197.128.0|4|466 +1.3.6.1.4.1.14179.2.1.15.1.11.78.225.190.186.202.133.40.172.158.59.131.224.0|4|246 +1.3.6.1.4.1.14179.2.1.15.1.11.86.71.181.209.89.119.40.172.158.73.197.128.0|4|16 +1.3.6.1.4.1.14179.2.1.15.1.11.208.194.78.18.208.160.8.123.135.28.247.160.17|4|132 +1.3.6.1.4.1.14179.2.1.15.1.11.208.194.78.18.208.160.8.123.135.29.160.64.17|4|0 +1.3.6.1.4.1.14179.2.1.15.1.11.208.194.78.18.208.160.40.172.158.52.22.96.0|4|495 +1.3.6.1.4.1.14179.2.1.15.1.11.208.194.78.18.208.160.40.172.158.73.197.128.0|4|16 +1.3.6.1.4.1.14179.2.1.15.1.11.208.194.78.18.208.160.40.172.158.77.225.160.0|4|710 +1.3.6.1.4.1.14179.2.1.15.1.11.210.200.94.109.244.160.40.172.158.73.197.128.0|4|76 +1.3.6.1.4.1.14179.2.1.15.1.11.242.117.185.62.239.105.8.69.209.213.189.0.0|4|1123 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.8.123.135.28.30.64.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.8.123.135.29.9.128.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.8.123.135.29.160.64.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.8.123.135.29.164.0.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.24.249.53.103.175.0.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.0.25.190.163.215.50.24.249.53.225.42.224.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.24.239.58.51.23.218.40.172.158.56.69.96.0|2|16 +1.3.6.1.4.1.14179.2.1.15.1.27.46.20.14.75.185.108.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.0.60.16.104.154.224.0|2|15 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.8.123.135.28.247.160.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.8.123.135.29.160.64.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.40.172.158.52.22.96.0|2|17 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.40.172.158.73.197.128.0|2|23 +1.3.6.1.4.1.14179.2.1.15.1.27.62.240.156.87.248.163.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.27.64.176.118.144.45.13.8.123.135.28.247.160.17|2|22 +1.3.6.1.4.1.14179.2.1.15.1.27.64.176.118.144.45.13.40.172.158.73.197.128.0|2|20 +1.3.6.1.4.1.14179.2.1.15.1.27.78.225.190.186.202.133.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.27.86.71.181.209.89.119.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.27.208.194.78.18.208.160.8.123.135.28.247.160.17|2|-20 +1.3.6.1.4.1.14179.2.1.15.1.27.208.194.78.18.208.160.8.123.135.29.160.64.17|2|15 +1.3.6.1.4.1.14179.2.1.15.1.27.208.194.78.18.208.160.40.172.158.52.22.96.0|2|34 +1.3.6.1.4.1.14179.2.1.15.1.27.208.194.78.18.208.160.40.172.158.73.197.128.0|2|28 +1.3.6.1.4.1.14179.2.1.15.1.27.208.194.78.18.208.160.40.172.158.77.225.160.0|2|25 +1.3.6.1.4.1.14179.2.1.15.1.27.210.200.94.109.244.160.40.172.158.73.197.128.0|2|7 +1.3.6.1.4.1.14179.2.1.15.1.27.242.117.185.62.239.105.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.8.123.135.28.30.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.8.123.135.29.9.128.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.8.123.135.29.164.0.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.24.249.53.103.175.0.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.0.25.190.163.215.50.24.249.53.225.42.224.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.24.239.58.51.23.218.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.46.20.14.75.185.108.8.123.135.29.164.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.62.240.156.87.248.163.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.64.176.118.144.45.13.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.64.176.118.144.45.13.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.78.225.190.186.202.133.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.86.71.181.209.89.119.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.208.194.78.18.208.160.8.123.135.28.247.160.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.208.194.78.18.208.160.8.123.135.29.160.64.17|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.208.194.78.18.208.160.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.208.194.78.18.208.160.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.208.194.78.18.208.160.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.210.200.94.109.244.160.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.1.15.1.28.242.117.185.62.239.105.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.1.16.1.1.0.25.190.163.231.194.0.25.190.163.215.50|4x|0019bea3e7c2 +1.3.6.1.4.1.14179.2.1.16.1.1.60.132.106.159.175.130.24.239.58.51.23.218|4x|3c846a9faf82 +1.3.6.1.4.1.14179.2.1.16.1.1.68.209.250.117.93.125.86.71.181.209.89.119|4x|44d1fa755d7d +1.3.6.1.4.1.14179.2.1.16.1.1.96.34.50.251.52.98.62.240.156.87.248.163|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.16.1.1.96.34.50.251.52.98.64.176.118.144.45.13|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.16.1.1.96.34.50.251.52.98.208.194.78.18.208.160|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.16.1.1.96.34.50.251.52.98.210.200.94.109.244.160|4x|602232fb3462 +1.3.6.1.4.1.14179.2.1.16.1.1.144.154.74.221.235.5.46.20.14.75.185.108|4x|909a4addeb05 +1.3.6.1.4.1.14179.2.1.16.1.1.244.45.6.162.185.70.242.117.185.62.239.105|4x|f42d06a2b946 +1.3.6.1.4.1.14179.2.1.16.1.1.244.111.237.139.122.192.78.225.190.186.202.133|4x|f46fed8b7ac0 +1.3.6.1.4.1.14179.2.1.16.1.20.0.25.190.163.231.194.0.25.190.163.215.50|4x|0019bea3d732 +1.3.6.1.4.1.14179.2.1.16.1.20.60.132.106.159.175.130.24.239.58.51.23.218|4x|18ef3a3317da +1.3.6.1.4.1.14179.2.1.16.1.20.68.209.250.117.93.125.86.71.181.209.89.119|4x|5647b5d15977 +1.3.6.1.4.1.14179.2.1.16.1.20.96.34.50.251.52.98.62.240.156.87.248.163|4x|3ef09c57f8a3 +1.3.6.1.4.1.14179.2.1.16.1.20.96.34.50.251.52.98.64.176.118.144.45.13|4x|40b076902d0d +1.3.6.1.4.1.14179.2.1.16.1.20.96.34.50.251.52.98.208.194.78.18.208.160|4x|d0c24e12d0a0 +1.3.6.1.4.1.14179.2.1.16.1.20.96.34.50.251.52.98.210.200.94.109.244.160|4x|d2c85e6df4a0 +1.3.6.1.4.1.14179.2.1.16.1.20.144.154.74.221.235.5.46.20.14.75.185.108|4x|2e140e4bb96c +1.3.6.1.4.1.14179.2.1.16.1.20.244.45.6.162.185.70.242.117.185.62.239.105|4x|f275b93eef69 +1.3.6.1.4.1.14179.2.1.16.1.20.244.111.237.139.122.192.78.225.190.186.202.133|4x|4ee1bebaca85 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.205.248|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.206.46|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.207.26|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.207.214|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.208.88|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.209.96|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.12.35.105.15.209.166|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.32.121.24.187.247.226|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.80.2.145.214.19.243|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.80.2.145.214.20.216|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.80.2.145.214.26.19|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.80.166.216.175.120.254|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.106.196.41.62.181.65|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.116.58.244.35.33.112|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.118.79.23.49.17.236|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.126.34.215.68.128.45|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.140.248.197.1.94.110|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.140.248.197.172.142.231|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.144.15.12.69.125.29|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.11|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.25|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.30|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.66|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.83|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.107|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.153|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.162|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.183|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.200|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.152.170.252.36.113.243|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.184.138.96.123.224.118|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.196.147|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.197.57|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.197.69|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.197.76|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.202.212|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.188.221.194.36.203.205|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.202.79.81.64.136.236|2|0 +1.3.6.1.4.1.14179.2.1.21.1.1.222.213.61.11.103.183|2|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.2.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.3.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.205.248|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.206.46|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.207.26|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.207.214|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.208.88|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.209.96|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.12.35.105.15.209.166|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.32.121.24.187.247.226|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.80.2.145.214.19.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.80.2.145.214.20.216|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.80.2.145.214.26.19|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.80.166.216.175.120.254|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.106.196.41.62.181.65|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.116.58.244.35.33.112|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.118.79.23.49.17.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.126.34.215.68.128.45|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.140.248.197.1.94.110|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.140.248.197.172.142.231|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.144.15.12.69.125.29|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.11|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.25|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.30|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.66|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.83|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.107|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.153|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.162|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.183|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.200|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.152.170.252.36.113.243|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.184.138.96.123.224.118|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.196.147|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.197.57|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.197.69|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.197.76|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.202.212|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.188.221.194.36.203.205|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.202.79.81.64.136.236|70|0 +1.3.6.1.4.1.14179.2.1.21.1.20.222.213.61.11.103.183|70|0 +1.3.6.1.4.1.14179.2.2.1.1.1.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.1.1.1.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.1.1.1.0.223.29.42.246.64|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.1.1.1.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.28.170.96|4x|087b871caa60 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.1.1.1.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.95.147.160|4x|18f9355f93a0 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.102.134.96|4x|18f935668660 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.1.1.1.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.1.1.1.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.1.1.1.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.1.1.1.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.1.1.1.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.1.1.1.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.1.1.1.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.1.1.1.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.1.1.1.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.1.1.1.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.1.1.1.180.222.49.102.89.160|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.1.1.1.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.1.1.2.0.60.16.104.153.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.0.60.16.104.154.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.0.223.29.42.246.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.69.209.213.189.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.28.30.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.28.170.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.28.247.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.9.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.160.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.164.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.164.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.167.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.205.32|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.212.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.230.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.8.123.135.29.230.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.95.147.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.97.136.32|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.102.87.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.102.134.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.103.175.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.225.4.192|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.24.249.53.225.42.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.28.209.224.173.249.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.28.209.224.174.126.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.36.54.218.80.92.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.36.54.218.80.101.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.36.54.218.80.103.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.36.54.218.80.109.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.52.22.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.52.31.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.56.69.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.59.119.32|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.59.131.224|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.61.47.192|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.61.56.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.61.56.192|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.69.128.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.73.197.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.73.198.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.73.198.96|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.76.139.32|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.40.172.158.77.225.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.6.101.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.6.111.192|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.7.225.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.8.101.0|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.8.178.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.9.132.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.15.230.128|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.184.54.32|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.88.139.28.184.116.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.112.105.90.156.95.64|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.180.222.49.102.89.160|2|2 +1.3.6.1.4.1.14179.2.2.1.1.2.244.219.230.228.7.192|2|2 +1.3.6.1.4.1.14179.2.2.1.1.3.0.60.16.104.153.160|4x|4d41525f524e445f4f4646435f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.0.60.16.104.154.224|4x|4d41525f4c4f475f4f4646435f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.0.223.29.42.246.64|4x|4d41525f4d41494e545f41505f31 +1.3.6.1.4.1.14179.2.2.1.1.3.8.69.209.213.189.0|4x|4d41525f50524f445f4d414e47544f4d4153 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.28.30.64|4x|4d41522d4c4f472d4f57482d31302d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.28.170.96|4x|4d41525f44415455505554495f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.28.247.160|4x|4d41522d4c4f41442d4241592d30312d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.9.128|4x|4d41522d43484d502d30372d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.160.64|4x|4d41522d4c4f472d4f57482d30382d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.164.0|4x|4d41522d43484d502d30392d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.164.64|4x|4d41522d4c4f41442d4241592d30322d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.167.160|4x|4d41522d50524f442d424b4e442d30312d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.205.32|4x|4d41522d43484d502d31312d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.212.160|4x|4d41522d50524f442d424b4e442d30332d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.230.64|4x|4d41522d4c4f472d4f57482d30362d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.8.123.135.29.230.96|4x|4d41522d50524f442d424b4e442d30322d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.95.147.160|4x|4d41522d5453442d4f4646432d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.97.136.32|4x|4d41522d43484d502d30382d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.102.87.0|4x|4d41522d43484d502d31322d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.102.134.96|4x|4d41522d524d504d2d4f4646432d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.103.175.0|4x|4d41522d43484d502d31302d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.225.4.192|4x|4d41522d4c4f472d4f57482d30372d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.24.249.53.225.42.224|4x|4d41522d4c4f472d4f57482d30392d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.28.209.224.173.249.0|4x|4d41525f50524f445f4f4646494345 +1.3.6.1.4.1.14179.2.2.1.1.3.28.209.224.174.126.128|4x|4d41525f51415f4f464643 +1.3.6.1.4.1.14179.2.2.1.1.3.36.54.218.80.92.0|4x|4d41525f50524f445f53484f50464c4f4f525f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.36.54.218.80.101.224|4x|4d41525f50524f445f56494e45474152 +1.3.6.1.4.1.14179.2.2.1.1.3.36.54.218.80.103.64|4x|4d41525f454e5452414e43455f4c4f4242595f4755415244 +1.3.6.1.4.1.14179.2.2.1.1.3.36.54.218.80.109.224|4x|4d41525f50524f445f4558504f52545f4c494e455f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.52.22.96|4x|4d41525f4c4f475f4f57485f41505f31 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.52.31.224|4x|4d41525f50524f445f41505f33 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.56.69.96|4x|4d41525f524d504d5f30315f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.59.119.32|4x|4d41525f43484d505f30345f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.59.131.224|4x|4d41525f50524f445f41505f34 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.61.47.192|4x|4d41525f50524f445f41505f31 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.61.56.128|4x|4d41525f43484d505f30315f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.61.56.192|4x|4d41525f43484d505f30325f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.69.128.160|4x|4d41525f4c4f475f4f57485f41505f33 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.73.197.128|4x|4d41525f4c4f475f4f57485f41505f32 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.73.198.0|4x|4d41525f4c4f475f4f57485f41505f34 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.73.198.96|4x|4d41525f43484d505f30335f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.76.139.32|4x|4d41525f4c4f475f4f57485f41505f35 +1.3.6.1.4.1.14179.2.2.1.1.3.40.172.158.77.225.160|4x|4d41525f43484d505f30365f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.6.101.160|4x|4d41522d4c494e45372d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.6.111.192|4x|4d41522d5344492d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.7.225.128|4x|4d41522d4c494e4531352d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.8.101.0|4x|4d41522d4c494e4533332d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.8.178.160|4x|4d41522d564d532d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.9.132.128|4x|4d41522d534f5953415543452d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.15.230.128|4x|4d41522d4c494e4533442d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.184.54.32|4x|4d41522d4d4958494e472d415245412d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.88.139.28.184.116.64|4x|4d41522d4c494e4533412d4150 +1.3.6.1.4.1.14179.2.2.1.1.3.112.105.90.156.95.64|4x|4d41525f43484d505f30355f4150 +1.3.6.1.4.1.14179.2.2.1.1.3.180.222.49.102.89.160|4x|4d41525f41444d494e5f4255494c44494e47 +1.3.6.1.4.1.14179.2.2.1.1.3.244.219.230.228.7.192|4x|4d41525f50524f445f41505f32 +1.3.6.1.4.1.14179.2.2.1.1.4.0.60.16.104.153.160|4x|522644204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.0.60.16.104.154.224|4x|4c6f67697374696373204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.0.223.29.42.246.64|4x|456e67696e656572696e67204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.69.209.213.189.0|4x|50726f64756374696f6e2041726561204d616e6720546f6d6173 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.28.30.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.28.170.96|4x|41646d696e204275696c64696e67 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.28.247.160|4x|4c6f6164696e6720426179 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.9.128|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.160.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.164.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.164.64|4x|4c6f6164696e6720426179 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.167.160|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.205.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.212.160|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.230.64|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.8.123.135.29.230.96|4x|50726f64756374696f6e204261636b656e64 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.95.147.160|4x|545344204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.97.136.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.102.87.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.102.134.96|4x|524d504d204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.103.175.0|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.225.4.192|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.24.249.53.225.42.224|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.28.209.224.173.249.0|4x|50726f64756374696f6e204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.28.209.224.174.126.128|4x|5141204f6666696365 +1.3.6.1.4.1.14179.2.2.1.1.4.36.54.218.80.92.0|4x|50726f64756374696f6e2053686f70666c6f6f72 +1.3.6.1.4.1.14179.2.2.1.1.4.36.54.218.80.101.224|4x|56696e6567617220526f6f6d +1.3.6.1.4.1.14179.2.2.1.1.4.36.54.218.80.103.64|4x|456e7472616e6365204c6f626279 +1.3.6.1.4.1.14179.2.2.1.1.4.36.54.218.80.109.224|4x|50726f64756374696f6e204578706f72746c696e65 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.52.22.96|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.52.31.224|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.56.69.96|4x|524d504d2041726561 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.59.119.32|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.59.131.224|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.61.47.192|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.61.56.128|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.61.56.192|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.69.128.160|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.73.197.128|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.73.198.0|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.73.198.96|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.76.139.32|4x|4f6c642057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.40.172.158.77.225.160|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.6.101.160|4|Line7 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.6.111.192|4|SDI +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.7.225.128|4x|4c696e65203135 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.8.101.0|4x|4c696e65203333 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.8.178.160|4x|564d5320526f6f6d +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.9.132.128|4x|536f7973617563652056696e65676172 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.15.230.128|4x|4c696e65203344 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.184.54.32|4x|4d6978696e672041726561 +1.3.6.1.4.1.14179.2.2.1.1.4.88.139.28.184.116.64|4x|4c696e65203341 +1.3.6.1.4.1.14179.2.2.1.1.4.112.105.90.156.95.64|4x|4368616d70696f6e2057617265686f757365 +1.3.6.1.4.1.14179.2.2.1.1.4.180.222.49.102.89.160|4x|41646d696e204275696c64696e67 +1.3.6.1.4.1.14179.2.2.1.1.4.244.219.230.228.7.192|4x|50726f64756374696f6e2041726561 +1.3.6.1.4.1.14179.2.2.1.1.5.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.5.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.6.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.6.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.8.0.60.16.104.153.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.0.60.16.104.154.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.0.223.29.42.246.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.69.209.213.189.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.28.30.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.28.170.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.28.247.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.9.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.160.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.164.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.164.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.167.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.205.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.212.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.230.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.8.123.135.29.230.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.95.147.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.97.136.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.102.87.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.102.134.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.103.175.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.225.4.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.24.249.53.225.42.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.28.209.224.173.249.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.28.209.224.174.126.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.36.54.218.80.92.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.36.54.218.80.101.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.36.54.218.80.103.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.36.54.218.80.109.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.52.22.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.52.31.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.56.69.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.59.119.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.59.131.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.61.47.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.61.56.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.61.56.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.69.128.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.73.197.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.73.198.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.73.198.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.76.139.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.40.172.158.77.225.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.6.101.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.6.111.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.7.225.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.8.101.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.8.178.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.9.132.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.15.230.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.184.54.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.88.139.28.184.116.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.112.105.90.156.95.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.180.222.49.102.89.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.8.244.219.230.228.7.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.9.0.60.16.104.153.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.0.60.16.104.154.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.0.223.29.42.246.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.69.209.213.189.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.28.30.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.28.170.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.28.247.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.9.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.160.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.164.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.164.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.167.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.205.32|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.212.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.230.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.8.123.135.29.230.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.95.147.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.97.136.32|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.102.87.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.102.134.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.103.175.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.225.4.192|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.24.249.53.225.42.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.28.209.224.173.249.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.28.209.224.174.126.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.36.54.218.80.92.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.36.54.218.80.101.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.36.54.218.80.103.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.36.54.218.80.109.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.52.22.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.52.31.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.56.69.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.59.119.32|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.59.131.224|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.61.47.192|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.61.56.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.61.56.192|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.69.128.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.73.197.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.73.198.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.73.198.96|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.76.139.32|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.40.172.158.77.225.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.6.101.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.6.111.192|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.7.225.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.8.101.0|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.8.178.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.9.132.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.15.230.128|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.184.54.32|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.88.139.28.184.116.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.112.105.90.156.95.64|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.180.222.49.102.89.160|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.9.244.219.230.228.7.192|4x|312e312e322e34 +1.3.6.1.4.1.14179.2.2.1.1.10.0.60.16.104.153.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.0.60.16.104.154.224|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.0.223.29.42.246.64|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.8.69.209.213.189.0|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.28.30.64|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.28.170.96|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.28.247.160|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.9.128|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.160.64|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.164.0|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.164.64|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.167.160|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.205.32|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.212.160|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.230.64|4| +1.3.6.1.4.1.14179.2.2.1.1.10.8.123.135.29.230.96|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.95.147.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.97.136.32|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.102.87.0|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.102.134.96|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.103.175.0|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.225.4.192|4| +1.3.6.1.4.1.14179.2.2.1.1.10.24.249.53.225.42.224|4| +1.3.6.1.4.1.14179.2.2.1.1.10.28.209.224.173.249.0|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.28.209.224.174.126.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.36.54.218.80.92.0|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.36.54.218.80.101.224|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.36.54.218.80.103.64|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.36.54.218.80.109.224|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.52.22.96|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.52.31.224|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.56.69.96|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.59.119.32|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.59.131.224|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.61.47.192|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.61.56.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.61.56.192|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.69.128.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.73.197.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.73.198.0|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.73.198.96|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.76.139.32|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.40.172.158.77.225.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.6.101.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.6.111.192|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.7.225.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.8.101.0|4| +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.8.178.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.9.132.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.15.230.128|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.184.54.32|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.88.139.28.184.116.64|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.112.105.90.156.95.64|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.180.222.49.102.89.160|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.10.244.219.230.228.7.192|4x|4d41522d574c432d4339383030 +1.3.6.1.4.1.14179.2.2.1.1.11.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.11.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.12.0.60.16.104.153.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.0.60.16.104.154.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.0.223.29.42.246.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.69.209.213.189.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.28.30.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.28.170.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.28.247.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.9.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.160.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.164.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.164.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.167.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.205.32|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.212.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.230.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.8.123.135.29.230.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.95.147.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.97.136.32|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.102.87.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.102.134.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.103.175.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.225.4.192|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.24.249.53.225.42.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.28.209.224.173.249.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.28.209.224.174.126.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.36.54.218.80.92.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.36.54.218.80.101.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.36.54.218.80.103.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.36.54.218.80.109.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.52.22.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.52.31.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.56.69.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.59.119.32|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.59.131.224|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.61.47.192|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.61.56.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.61.56.192|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.69.128.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.73.197.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.73.198.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.73.198.96|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.76.139.32|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.40.172.158.77.225.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.6.101.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.6.111.192|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.7.225.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.8.101.0|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.8.178.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.9.132.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.15.230.128|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.184.54.32|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.88.139.28.184.116.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.112.105.90.156.95.64|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.180.222.49.102.89.160|2|180 +1.3.6.1.4.1.14179.2.2.1.1.12.244.219.230.228.7.192|2|180 +1.3.6.1.4.1.14179.2.2.1.1.13.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.13.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.16.0.60.16.104.153.160|4x|4149522d415031383532492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.0.60.16.104.154.224|4x|4149522d415031383532492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.0.223.29.42.246.64|4x|4149522d415031383532492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.8.69.209.213.189.0|4x|4149522d415032383032492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.28.30.64|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.28.170.96|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.28.247.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.9.128|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.160.64|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.164.0|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.164.64|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.167.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.205.32|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.212.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.230.64|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.8.123.135.29.230.96|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.95.147.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.97.136.32|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.102.87.0|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.102.134.96|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.103.175.0|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.225.4.192|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.24.249.53.225.42.224|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.28.209.224.173.249.0|4x|4149522d415031383532492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.28.209.224.174.126.128|4x|4149522d415031383532492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.36.54.218.80.92.0|4x|4149522d415032383032492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.36.54.218.80.101.224|4x|4149522d415032383032492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.36.54.218.80.103.64|4x|4149522d415032383032492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.36.54.218.80.109.224|4x|4149522d415032383032492d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.52.22.96|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.52.31.224|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.56.69.96|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.59.119.32|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.59.131.224|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.61.47.192|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.61.56.128|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.61.56.192|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.69.128.160|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.73.197.128|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.73.198.0|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.73.198.96|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.76.139.32|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.40.172.158.77.225.160|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.6.101.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.6.111.192|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.7.225.128|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.8.101.0|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.8.178.160|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.9.132.128|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.15.230.128|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.184.54.32|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.88.139.28.184.116.64|4x|43393132304158452d41 +1.3.6.1.4.1.14179.2.2.1.1.16.112.105.90.156.95.64|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.180.222.49.102.89.160|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.16.244.219.230.228.7.192|4x|4149522d415032383032452d412d4b39 +1.3.6.1.4.1.14179.2.2.1.1.17.0.60.16.104.153.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.0.60.16.104.154.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.0.223.29.42.246.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.69.209.213.189.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.28.30.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.28.170.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.28.247.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.9.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.160.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.164.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.164.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.167.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.205.32|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.212.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.230.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.8.123.135.29.230.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.95.147.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.97.136.32|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.102.87.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.102.134.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.103.175.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.225.4.192|4| +1.3.6.1.4.1.14179.2.2.1.1.17.24.249.53.225.42.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.28.209.224.173.249.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.28.209.224.174.126.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.36.54.218.80.92.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.36.54.218.80.101.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.36.54.218.80.103.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.36.54.218.80.109.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.52.22.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.52.31.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.56.69.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.59.119.32|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.59.131.224|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.61.47.192|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.61.56.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.61.56.192|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.69.128.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.73.197.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.73.198.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.73.198.96|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.76.139.32|4| +1.3.6.1.4.1.14179.2.2.1.1.17.40.172.158.77.225.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.6.101.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.6.111.192|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.7.225.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.8.101.0|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.8.178.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.9.132.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.15.230.128|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.184.54.32|4| +1.3.6.1.4.1.14179.2.2.1.1.17.88.139.28.184.116.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.112.105.90.156.95.64|4| +1.3.6.1.4.1.14179.2.2.1.1.17.180.222.49.102.89.160|4| +1.3.6.1.4.1.14179.2.2.1.1.17.244.219.230.228.7.192|4| +1.3.6.1.4.1.14179.2.2.1.1.18.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.18.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.19.0.60.16.104.153.160|64x|0ab73499 +1.3.6.1.4.1.14179.2.2.1.1.19.0.60.16.104.154.224|64x|0ab73488 +1.3.6.1.4.1.14179.2.2.1.1.19.0.223.29.42.246.64|64x|0ab7349a +1.3.6.1.4.1.14179.2.2.1.1.19.8.69.209.213.189.0|64x|0ab7349d +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.28.30.64|64x|0ab73479 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.28.170.96|64x|0ab73478 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.28.247.160|64x|0ab7347e +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.9.128|64x|0ab7347d +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.160.64|64x|0ab7347b +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.164.0|64x|0ab73484 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.164.64|64x|0ab7347f +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.167.160|64x|0ab73483 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.205.32|64x|0ab73474 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.212.160|64x|0ab73481 +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.230.64|64x|0ab7347c +1.3.6.1.4.1.14179.2.2.1.1.19.8.123.135.29.230.96|64x|0ab73472 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.95.147.160|64x|0ab73473 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.97.136.32|64x|0ab73475 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.102.87.0|64x|0ab73480 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.102.134.96|64x|0ab73476 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.103.175.0|64x|0ab73482 +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.225.4.192|64x|0ab7347a +1.3.6.1.4.1.14179.2.2.1.1.19.24.249.53.225.42.224|64x|0ab73477 +1.3.6.1.4.1.14179.2.2.1.1.19.28.209.224.173.249.0|64x|0ab7349b +1.3.6.1.4.1.14179.2.2.1.1.19.28.209.224.174.126.128|64x|0ab73489 +1.3.6.1.4.1.14179.2.2.1.1.19.36.54.218.80.92.0|64x|0ab73495 +1.3.6.1.4.1.14179.2.2.1.1.19.36.54.218.80.101.224|64x|0ab7349e +1.3.6.1.4.1.14179.2.2.1.1.19.36.54.218.80.103.64|64x|0ab7349c +1.3.6.1.4.1.14179.2.2.1.1.19.36.54.218.80.109.224|64x|0ab73496 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.52.22.96|64x|0ab73493 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.52.31.224|64x|0ab73497 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.56.69.96|64x|0ab73494 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.59.119.32|64x|0ab73498 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.59.131.224|64x|0ab73485 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.61.47.192|64x|0ab73486 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.61.56.128|64x|0ab73492 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.61.56.192|64x|0ab73491 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.69.128.160|64x|0ab7348c +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.73.197.128|64x|0ab7348d +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.73.198.0|64x|0ab7348a +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.73.198.96|64x|0ab73490 +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.76.139.32|64x|0ab7348b +1.3.6.1.4.1.14179.2.2.1.1.19.40.172.158.77.225.160|64x|0ab7348f +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.6.101.160|64x|0ab7346c +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.6.111.192|64x|0ab7346e +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.7.225.128|64x|0ab7346d +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.8.101.0|64x|0ab73470 +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.8.178.160|64x|0ab7346f +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.9.132.128|64x|0ab73471 +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.15.230.128|64x|0ab73469 +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.184.54.32|64x|0ab7346a +1.3.6.1.4.1.14179.2.2.1.1.19.88.139.28.184.116.64|64x|0ab7346b +1.3.6.1.4.1.14179.2.2.1.1.19.112.105.90.156.95.64|64x|0ab7348e +1.3.6.1.4.1.14179.2.2.1.1.19.180.222.49.102.89.160|64x|0ab73487 +1.3.6.1.4.1.14179.2.2.1.1.19.244.219.230.228.7.192|64x|0ab7349f +1.3.6.1.4.1.14179.2.2.1.1.21.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.95.147.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.1.1.21.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.1.1.22.0.60.16.104.153.160|2|56 +1.3.6.1.4.1.14179.2.2.1.1.22.0.60.16.104.154.224|2|56 +1.3.6.1.4.1.14179.2.2.1.1.22.0.223.29.42.246.64|2|56 +1.3.6.1.4.1.14179.2.2.1.1.22.8.69.209.213.189.0|2|69 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.28.30.64|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.28.170.96|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.28.247.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.9.128|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.160.64|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.164.0|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.164.64|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.167.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.205.32|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.212.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.230.64|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.8.123.135.29.230.96|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.95.147.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.97.136.32|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.102.87.0|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.102.134.96|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.103.175.0|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.225.4.192|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.24.249.53.225.42.224|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.28.209.224.173.249.0|2|56 +1.3.6.1.4.1.14179.2.2.1.1.22.28.209.224.174.126.128|2|56 +1.3.6.1.4.1.14179.2.2.1.1.22.36.54.218.80.92.0|2|69 +1.3.6.1.4.1.14179.2.2.1.1.22.36.54.218.80.101.224|2|69 +1.3.6.1.4.1.14179.2.2.1.1.22.36.54.218.80.103.64|2|69 +1.3.6.1.4.1.14179.2.2.1.1.22.36.54.218.80.109.224|2|69 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.52.22.96|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.52.31.224|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.56.69.96|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.59.119.32|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.59.131.224|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.61.47.192|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.61.56.128|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.61.56.192|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.69.128.160|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.73.197.128|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.73.198.0|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.73.198.96|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.76.139.32|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.40.172.158.77.225.160|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.6.101.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.6.111.192|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.7.225.128|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.8.101.0|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.8.178.160|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.9.132.128|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.15.230.128|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.184.54.32|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.88.139.28.184.116.64|2|94 +1.3.6.1.4.1.14179.2.2.1.1.22.112.105.90.156.95.64|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.180.222.49.102.89.160|2|68 +1.3.6.1.4.1.14179.2.2.1.1.22.244.219.230.228.7.192|2|68 +1.3.6.1.4.1.14179.2.2.1.1.23.0.60.16.104.153.160|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.0.60.16.104.154.224|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.0.223.29.42.246.64|4x|4d41525f574c435f3031 +1.3.6.1.4.1.14179.2.2.1.1.23.8.69.209.213.189.0|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.28.30.64|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.28.170.96|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.28.247.160|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.9.128|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.160.64|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.164.0|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.164.64|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.167.160|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.205.32|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.212.160|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.230.64|4| +1.3.6.1.4.1.14179.2.2.1.1.23.8.123.135.29.230.96|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.95.147.160|4x|4d41522d414e582d574c432d3031 +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.97.136.32|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.102.87.0|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.102.134.96|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.103.175.0|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.225.4.192|4| +1.3.6.1.4.1.14179.2.2.1.1.23.24.249.53.225.42.224|4| +1.3.6.1.4.1.14179.2.2.1.1.23.28.209.224.173.249.0|4x|4d41525f574c435f3031 +1.3.6.1.4.1.14179.2.2.1.1.23.28.209.224.174.126.128|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.36.54.218.80.92.0|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.36.54.218.80.101.224|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.36.54.218.80.103.64|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.36.54.218.80.109.224|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.52.22.96|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.52.31.224|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.56.69.96|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.59.119.32|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.59.131.224|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.61.47.192|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.61.56.128|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.61.56.192|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.69.128.160|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.73.197.128|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.73.198.0|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.73.198.96|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.76.139.32|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.40.172.158.77.225.160|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.6.101.160|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.6.111.192|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.7.225.128|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.8.101.0|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.8.178.160|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.9.132.128|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.15.230.128|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.184.54.32|4| +1.3.6.1.4.1.14179.2.2.1.1.23.88.139.28.184.116.64|4| +1.3.6.1.4.1.14179.2.2.1.1.23.112.105.90.156.95.64|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.23.180.222.49.102.89.160|4x|4d41525f574c43 +1.3.6.1.4.1.14179.2.2.1.1.23.244.219.230.228.7.192|4x|4d41525f574c435f31 +1.3.6.1.4.1.14179.2.2.1.1.24.0.60.16.104.153.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.0.60.16.104.154.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.0.223.29.42.246.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.69.209.213.189.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.28.30.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.28.170.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.28.247.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.9.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.160.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.164.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.164.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.167.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.205.32|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.212.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.230.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.8.123.135.29.230.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.95.147.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.97.136.32|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.102.87.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.102.134.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.103.175.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.225.4.192|4| +1.3.6.1.4.1.14179.2.2.1.1.24.24.249.53.225.42.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.28.209.224.173.249.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.28.209.224.174.126.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.36.54.218.80.92.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.36.54.218.80.101.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.36.54.218.80.103.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.36.54.218.80.109.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.52.22.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.52.31.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.56.69.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.59.119.32|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.59.131.224|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.61.47.192|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.61.56.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.61.56.192|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.69.128.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.73.197.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.73.198.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.73.198.96|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.76.139.32|4| +1.3.6.1.4.1.14179.2.2.1.1.24.40.172.158.77.225.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.6.101.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.6.111.192|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.7.225.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.8.101.0|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.8.178.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.9.132.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.15.230.128|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.184.54.32|4| +1.3.6.1.4.1.14179.2.2.1.1.24.88.139.28.184.116.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.112.105.90.156.95.64|4| +1.3.6.1.4.1.14179.2.2.1.1.24.180.222.49.102.89.160|4| +1.3.6.1.4.1.14179.2.2.1.1.24.244.219.230.228.7.192|4| +1.3.6.1.4.1.14179.2.2.1.1.25.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.25.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.26.0.60.16.104.153.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.0.60.16.104.154.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.0.223.29.42.246.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.69.209.213.189.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.28.30.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.28.170.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.28.247.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.9.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.160.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.164.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.164.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.167.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.205.32|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.212.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.230.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.8.123.135.29.230.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.95.147.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.97.136.32|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.102.87.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.102.134.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.103.175.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.225.4.192|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.24.249.53.225.42.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.28.209.224.173.249.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.28.209.224.174.126.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.36.54.218.80.92.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.36.54.218.80.101.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.36.54.218.80.103.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.36.54.218.80.109.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.52.22.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.52.31.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.56.69.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.59.119.32|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.59.131.224|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.61.47.192|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.61.56.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.61.56.192|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.69.128.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.73.197.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.73.198.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.73.198.96|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.76.139.32|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.40.172.158.77.225.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.6.101.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.6.111.192|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.7.225.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.8.101.0|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.8.178.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.9.132.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.15.230.128|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.184.54.32|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.88.139.28.184.116.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.112.105.90.156.95.64|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.180.222.49.102.89.160|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.26.244.219.230.228.7.192|64x|ffffff00 +1.3.6.1.4.1.14179.2.2.1.1.27.0.60.16.104.153.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.0.60.16.104.154.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.0.223.29.42.246.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.69.209.213.189.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.28.30.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.28.170.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.28.247.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.9.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.160.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.164.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.164.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.167.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.205.32|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.212.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.230.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.8.123.135.29.230.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.95.147.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.97.136.32|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.102.87.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.102.134.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.103.175.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.225.4.192|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.24.249.53.225.42.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.28.209.224.173.249.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.28.209.224.174.126.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.36.54.218.80.92.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.36.54.218.80.101.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.36.54.218.80.103.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.36.54.218.80.109.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.52.22.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.52.31.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.56.69.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.59.119.32|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.59.131.224|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.61.47.192|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.61.56.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.61.56.192|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.69.128.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.73.197.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.73.198.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.73.198.96|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.76.139.32|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.40.172.158.77.225.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.6.101.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.6.111.192|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.7.225.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.8.101.0|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.8.178.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.9.132.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.15.230.128|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.184.54.32|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.88.139.28.184.116.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.112.105.90.156.95.64|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.180.222.49.102.89.160|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.27.244.219.230.228.7.192|64x|0ab73401 +1.3.6.1.4.1.14179.2.2.1.1.28.0.60.16.104.153.160|64x|0ab73499 +1.3.6.1.4.1.14179.2.2.1.1.28.0.60.16.104.154.224|64x|0ab73488 +1.3.6.1.4.1.14179.2.2.1.1.28.0.223.29.42.246.64|64x|0ab7349a +1.3.6.1.4.1.14179.2.2.1.1.28.8.69.209.213.189.0|64x|0ab7349d +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.28.30.64|64x|0ab73479 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.28.170.96|64x|0ab73478 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.28.247.160|64x|0ab7347e +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.9.128|64x|0ab7347d +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.160.64|64x|0ab7347b +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.164.0|64x|0ab73484 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.164.64|64x|0ab7347f +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.167.160|64x|0ab73483 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.205.32|64x|0ab73474 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.212.160|64x|0ab73481 +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.230.64|64x|0ab7347c +1.3.6.1.4.1.14179.2.2.1.1.28.8.123.135.29.230.96|64x|0ab73472 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.95.147.160|64x|0ab73473 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.97.136.32|64x|0ab73475 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.102.87.0|64x|0ab73480 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.102.134.96|64x|0ab73476 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.103.175.0|64x|0ab73482 +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.225.4.192|64x|0ab7347a +1.3.6.1.4.1.14179.2.2.1.1.28.24.249.53.225.42.224|64x|0ab73477 +1.3.6.1.4.1.14179.2.2.1.1.28.28.209.224.173.249.0|64x|0ab7349b +1.3.6.1.4.1.14179.2.2.1.1.28.28.209.224.174.126.128|64x|0ab73489 +1.3.6.1.4.1.14179.2.2.1.1.28.36.54.218.80.92.0|64x|0ab73495 +1.3.6.1.4.1.14179.2.2.1.1.28.36.54.218.80.101.224|64x|0ab7349e +1.3.6.1.4.1.14179.2.2.1.1.28.36.54.218.80.103.64|64x|0ab7349c +1.3.6.1.4.1.14179.2.2.1.1.28.36.54.218.80.109.224|64x|0ab73496 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.52.22.96|64x|0ab73493 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.52.31.224|64x|0ab73497 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.56.69.96|64x|0ab73494 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.59.119.32|64x|0ab73498 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.59.131.224|64x|0ab73485 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.61.47.192|64x|0ab73486 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.61.56.128|64x|0ab73492 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.61.56.192|64x|0ab73491 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.69.128.160|64x|0ab7348c +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.73.197.128|64x|0ab7348d +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.73.198.0|64x|0ab7348a +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.73.198.96|64x|0ab73490 +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.76.139.32|64x|0ab7348b +1.3.6.1.4.1.14179.2.2.1.1.28.40.172.158.77.225.160|64x|0ab7348f +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.6.101.160|64x|0ab7346c +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.6.111.192|64x|0ab7346e +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.7.225.128|64x|0ab7346d +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.8.101.0|64x|0ab73470 +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.8.178.160|64x|0ab7346f +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.9.132.128|64x|0ab73471 +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.15.230.128|64x|0ab73469 +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.184.54.32|64x|0ab7346a +1.3.6.1.4.1.14179.2.2.1.1.28.88.139.28.184.116.64|64x|0ab7346b +1.3.6.1.4.1.14179.2.2.1.1.28.112.105.90.156.95.64|64x|0ab7348e +1.3.6.1.4.1.14179.2.2.1.1.28.180.222.49.102.89.160|64x|0ab73487 +1.3.6.1.4.1.14179.2.2.1.1.28.244.219.230.228.7.192|64x|0ab7349f +1.3.6.1.4.1.14179.2.2.1.1.31.0.60.16.104.153.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.0.60.16.104.154.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.0.223.29.42.246.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.69.209.213.189.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.28.30.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.28.170.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.28.247.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.9.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.160.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.164.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.164.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.167.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.205.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.212.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.230.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.8.123.135.29.230.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.95.147.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.97.136.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.102.87.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.102.134.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.103.175.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.225.4.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.24.249.53.225.42.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.28.209.224.173.249.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.28.209.224.174.126.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.36.54.218.80.92.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.36.54.218.80.101.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.36.54.218.80.103.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.36.54.218.80.109.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.52.22.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.52.31.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.56.69.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.59.119.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.59.131.224|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.61.47.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.61.56.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.61.56.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.69.128.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.73.197.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.73.198.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.73.198.96|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.76.139.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.40.172.158.77.225.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.6.101.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.6.111.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.7.225.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.8.101.0|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.8.178.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.9.132.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.15.230.128|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.184.54.32|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.88.139.28.184.116.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.112.105.90.156.95.64|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.180.222.49.102.89.160|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.31.244.219.230.228.7.192|4x|31372e392e342e3237 +1.3.6.1.4.1.14179.2.2.1.1.32.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.32.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.33.0.60.16.104.153.160|4x|003c10680cd0 +1.3.6.1.4.1.14179.2.2.1.1.33.0.60.16.104.154.224|4x|003c10680d20 +1.3.6.1.4.1.14179.2.2.1.1.33.0.223.29.42.246.64|4x|00df1d2a32a8 +1.3.6.1.4.1.14179.2.2.1.1.33.8.69.209.213.189.0|4x|488b0a0f5228 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.28.30.64|4x|e4a41cade21c +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.28.170.96|4x|e4a41cadf3a0 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.28.247.160|4x|e4a41cadfd48 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.9.128|4x|e4a41cadff84 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.160.64|4x|087b8714125c +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.164.0|4x|087b871412d4 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.164.64|4x|087b871412dc +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.167.160|4x|087b87141348 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.205.32|4x|087b871417f8 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.212.160|4x|087b871418e8 +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.230.64|4x|087b87141b1c +1.3.6.1.4.1.14179.2.2.1.1.33.8.123.135.29.230.96|4x|087b87141b20 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.95.147.160|4x|18f9355c50c8 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.97.136.32|4x|18f9355c8f58 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.102.87.0|4x|18f9355d2934 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.102.134.96|4x|18f9355d2f20 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.103.175.0|4x|18f9355d5434 +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.225.4.192|4x|18f935d37eec +1.3.6.1.4.1.14179.2.2.1.1.33.24.249.53.225.42.224|4x|18f935d383b0 +1.3.6.1.4.1.14179.2.2.1.1.33.28.209.224.173.249.0|4x|1cd1e0ae0e08 +1.3.6.1.4.1.14179.2.2.1.1.33.28.209.224.174.126.128|4x|1cd1e0ae15d0 +1.3.6.1.4.1.14179.2.2.1.1.33.36.54.218.80.92.0|4x|0845d131e5c8 +1.3.6.1.4.1.14179.2.2.1.1.33.36.54.218.80.101.224|4x|0845d131e666 +1.3.6.1.4.1.14179.2.2.1.1.33.36.54.218.80.103.64|4x|0845d131e67c +1.3.6.1.4.1.14179.2.2.1.1.33.36.54.218.80.109.224|4x|0845d131e6e6 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.52.22.96|4x|28ac9e04b0e2 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.52.31.224|4x|28ac9e04b17a +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.56.69.96|4x|00be75cffd06 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.59.119.32|4x|00be75e92bb0 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.59.131.224|4x|00be75e92c7c +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.61.47.192|4x|70708b0c71a6 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.61.56.128|4x|70695a219932 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.61.56.192|4x|70695a219936 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.69.128.160|4x|00be7565b956 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.73.197.128|4x|28ac9e04b584 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.73.198.0|4x|28ac9e04b58c +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.73.198.96|4x|28ac9e04b592 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.76.139.32|4x|00be75e93100 +1.3.6.1.4.1.14179.2.2.1.1.33.40.172.158.77.225.160|4x|70695a219d84 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.6.101.160|4x|588b1c016b0c +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.6.111.192|4x|588b1c016c50 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.7.225.128|4x|588b1c019a88 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.8.101.0|4x|588b1c01aaf8 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.8.178.160|4x|588b1c01b4ac +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.9.132.128|4x|588b1c01cee8 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.15.230.128|4x|588b1cb65b24 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.184.54.32|4x|588b1cb66518 +1.3.6.1.4.1.14179.2.2.1.1.33.88.139.28.184.116.64|4x|588b1cb66cdc +1.3.6.1.4.1.14179.2.2.1.1.33.112.105.90.156.95.64|4x|4c776de1e980 +1.3.6.1.4.1.14179.2.2.1.1.33.180.222.49.102.89.160|4x|005d7318dc6c +1.3.6.1.4.1.14179.2.2.1.1.33.244.219.230.228.7.192|4x|f4dbe6e36d7c +1.3.6.1.4.1.14179.2.2.1.1.37.0.60.16.104.153.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.0.223.29.42.246.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.69.209.213.189.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.28.30.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.9.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.164.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.164.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.8.123.135.29.230.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.95.147.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.97.136.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.28.209.224.174.126.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.36.54.218.80.101.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.36.54.218.80.103.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.36.54.218.80.109.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.52.22.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.52.31.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.56.69.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.61.47.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.61.56.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.61.56.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.69.128.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.73.198.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.76.139.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.40.172.158.77.225.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.6.111.192|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.7.225.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.8.101.0|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.9.132.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.112.105.90.156.95.64|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.180.222.49.102.89.160|2|1 +1.3.6.1.4.1.14179.2.2.1.1.37.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.153.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.153.160.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.154.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.0.60.16.104.154.224.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.0.223.29.42.246.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.0.223.29.42.246.64.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.69.209.213.189.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.69.209.213.189.0.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.30.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.170.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.28.247.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.9.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.160.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.164.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.164.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.167.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.205.32.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.212.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.230.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.8.123.135.29.230.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.95.147.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.97.136.32.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.102.87.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.102.134.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.103.175.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.225.4.192.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.24.249.53.225.42.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.173.249.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.173.249.0.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.174.126.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.28.209.224.174.126.128.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.92.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.92.0.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.101.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.101.224.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.103.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.103.64.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.109.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.36.54.218.80.109.224.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.22.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.22.96.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.31.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.52.31.224.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.56.69.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.56.69.96.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.119.32.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.119.32.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.131.224.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.59.131.224.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.47.192.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.47.192.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.128.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.192.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.61.56.192.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.69.128.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.69.128.160.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.197.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.197.128.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.0.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.96.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.73.198.96.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.76.139.32.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.76.139.32.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.77.225.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.40.172.158.77.225.160.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.6.101.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.6.111.192.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.7.225.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.8.101.0.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.8.178.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.9.132.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.15.230.128.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.184.54.32.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.88.139.28.184.116.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.112.105.90.156.95.64.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.112.105.90.156.95.64.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.180.222.49.102.89.160.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.180.222.49.102.89.160.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.1.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.1.244.219.230.228.7.192.1|66|1 +1.3.6.1.4.1.14179.2.2.2.1.1.244.219.230.228.7.192.2|66|2 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.153.160.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.0.60.16.104.154.224.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.2.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.0.223.29.42.246.64.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.69.209.213.189.0.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.173.249.0.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.28.209.224.174.126.128.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.92.0.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.101.224.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.103.64.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.36.54.218.80.109.224.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.22.96.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.52.31.224.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.56.69.96.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.119.32.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.59.131.224.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.47.192.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.128.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.61.56.192.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.69.128.160.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.197.128.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.0.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.73.198.96.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.76.139.32.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.40.172.158.77.225.160.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.112.105.90.156.95.64.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.180.222.49.102.89.160.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.2.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.2.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.2.244.219.230.228.7.192.2|2|5 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.3.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.153.160.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.154.224.1|2|100 +1.3.6.1.4.1.14179.2.2.2.1.4.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.0.223.29.42.246.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.0.223.29.42.246.64.1|2|64 +1.3.6.1.4.1.14179.2.2.2.1.4.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.8.69.209.213.189.0.1|2|64 +1.3.6.1.4.1.14179.2.2.2.1.4.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.30.64.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.30.64.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.170.96.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.28.247.160.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.9.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.9.128.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.160.64.1|2|44 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.164.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.164.0.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.164.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.164.64.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.167.160.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.205.32.1|2|132 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.212.160.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.230.64.1|2|56 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.230.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.8.123.135.29.230.96.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.95.147.160.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.95.147.160.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.97.136.32.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.97.136.32.1|2|48 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.102.87.0.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.102.134.96.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.103.175.0.1|2|48 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.225.4.192.1|2|44 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.24.249.53.225.42.224.1|2|56 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.173.249.0.1|2|100 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.174.126.128.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.174.126.128.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.92.0.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.101.224.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.101.224.1|2|132 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.103.64.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.103.64.1|2|64 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.109.224.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.22.96.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.22.96.1|2|132 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.31.224.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.31.224.1|2|44 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.56.69.96.1|2|132 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.119.32.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.131.224.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.47.192.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.47.192.1|2|52 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.128.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.128.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.192.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.192.1|2|132 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.69.128.160.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.69.128.160.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.197.128.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.0.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.96.1|2|52 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.76.139.32.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.76.139.32.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.77.225.160.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.6.101.160.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.6.111.192.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.6.111.192.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.7.225.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.7.225.128.1|2|149 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.8.101.0.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.8.101.0.1|2|52 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.8.178.160.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.9.132.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.9.132.128.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.15.230.128.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.184.54.32.1|2|36 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.88.139.28.184.116.64.1|2|112 +1.3.6.1.4.1.14179.2.2.2.1.4.112.105.90.156.95.64.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.112.105.90.156.95.64.1|2|161 +1.3.6.1.4.1.14179.2.2.2.1.4.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.180.222.49.102.89.160.0|2|11 +1.3.6.1.4.1.14179.2.2.2.1.4.180.222.49.102.89.160.1|2|64 +1.3.6.1.4.1.14179.2.2.2.1.4.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.4.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.4.244.219.230.228.7.192.1|2|100 +1.3.6.1.4.1.14179.2.2.2.1.4.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.5.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.153.160.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.153.160.1|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.8.69.209.213.189.0.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.30.64.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.9.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.160.64.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.164.0.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.164.64.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.167.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.167.160.1|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.205.32.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.212.160.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.230.64.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.230.96.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.8.123.135.29.230.96.1|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.97.136.32.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.102.87.0.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.103.175.0.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.225.4.192.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.225.42.224.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.174.126.128.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.92.0.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.101.224.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.22.96.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.119.32.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.131.224.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.131.224.1|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.47.192.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.192.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.76.139.32.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.77.225.160.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.6.101.160.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.6.111.192.0|2|7 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.7.225.128.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.8.178.160.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.9.132.128.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.15.230.128.0|2|4 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.184.54.32.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.184.116.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.112.105.90.156.95.64.0|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.112.105.90.156.95.64.1|2|5 +1.3.6.1.4.1.14179.2.2.2.1.6.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.6.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.6.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.6.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.6.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.223.29.42.246.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.69.209.213.189.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.30.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.28.247.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.9.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.160.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.164.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.164.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.167.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.212.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.230.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.8.123.135.29.230.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.95.147.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.102.134.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.103.175.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.225.4.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.24.249.53.225.42.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.92.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.109.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.131.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.77.225.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.6.101.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.6.111.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.7.225.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.8.101.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.8.178.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.9.132.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.15.230.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.88.139.28.184.116.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.112.105.90.156.95.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.180.222.49.102.89.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.7.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.7.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.8.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.8.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.153.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.153.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.154.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.154.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.0.223.29.42.246.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.223.29.42.246.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.8.69.209.213.189.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.69.209.213.189.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.30.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.30.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.170.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.170.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.247.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.28.247.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.9.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.9.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.160.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.160.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.164.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.164.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.164.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.164.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.167.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.167.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.205.32.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.205.32.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.212.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.212.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.230.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.230.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.230.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.8.123.135.29.230.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.95.147.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.95.147.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.97.136.32.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.97.136.32.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.102.87.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.102.87.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.102.134.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.102.134.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.103.175.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.103.175.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.225.4.192.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.225.4.192.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.225.42.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.24.249.53.225.42.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.173.249.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.173.249.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.174.126.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.174.126.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.92.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.92.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.101.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.101.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.103.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.103.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.109.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.109.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.22.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.22.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.31.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.31.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.56.69.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.56.69.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.119.32.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.119.32.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.131.224.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.131.224.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.47.192.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.47.192.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.192.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.192.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.69.128.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.69.128.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.197.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.197.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.96.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.96.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.76.139.32.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.76.139.32.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.77.225.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.77.225.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.6.101.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.6.101.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.6.111.192.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.6.111.192.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.7.225.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.7.225.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.8.101.0.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.8.101.0.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.8.178.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.8.178.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.9.132.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.9.132.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.15.230.128.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.15.230.128.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.184.54.32.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.184.54.32.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.184.116.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.88.139.28.184.116.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.112.105.90.156.95.64.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.112.105.90.156.95.64.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.180.222.49.102.89.160.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.180.222.49.102.89.160.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.9.244.219.230.228.7.192.0|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.244.219.230.228.7.192.1|2|255 +1.3.6.1.4.1.14179.2.2.2.1.9.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.153.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.153.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.154.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.154.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.223.29.42.246.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.223.29.42.246.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.69.209.213.189.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.69.209.213.189.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.30.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.30.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.170.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.170.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.247.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.28.247.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.9.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.9.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.160.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.160.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.164.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.164.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.164.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.164.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.167.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.167.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.205.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.205.32.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.212.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.212.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.230.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.230.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.230.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.8.123.135.29.230.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.95.147.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.95.147.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.97.136.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.97.136.32.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.102.87.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.102.87.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.102.134.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.102.134.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.103.175.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.103.175.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.225.4.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.225.4.192.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.225.42.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.24.249.53.225.42.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.173.249.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.173.249.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.174.126.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.174.126.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.92.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.92.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.101.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.101.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.103.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.103.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.109.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.109.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.22.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.22.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.31.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.31.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.56.69.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.56.69.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.119.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.119.32.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.131.224.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.131.224.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.47.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.47.192.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.192.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.69.128.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.69.128.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.197.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.197.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.96.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.96.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.76.139.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.76.139.32.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.77.225.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.77.225.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.6.101.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.6.101.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.6.111.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.6.111.192.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.7.225.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.7.225.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.8.101.0.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.8.101.0.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.8.178.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.8.178.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.9.132.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.9.132.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.15.230.128.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.15.230.128.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.184.54.32.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.184.54.32.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.184.116.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.88.139.28.184.116.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.112.105.90.156.95.64.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.112.105.90.156.95.64.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.180.222.49.102.89.160.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.180.222.49.102.89.160.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.244.219.230.228.7.192.0|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.244.219.230.228.7.192.1|66|0 +1.3.6.1.4.1.14179.2.2.2.1.10.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.153.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.153.160.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.154.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.60.16.104.154.224.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.223.29.42.246.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.223.29.42.246.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.0.223.29.42.246.64.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.69.209.213.189.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.69.209.213.189.0.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.30.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.28.247.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.9.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.9.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.160.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.164.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.164.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.164.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.164.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.167.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.212.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.230.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.230.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.8.123.135.29.230.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.95.147.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.102.134.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.103.175.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.225.4.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.24.249.53.225.42.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.173.249.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.173.249.0.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.174.126.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.28.209.224.174.126.128.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.92.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.92.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.92.0.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.101.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.101.224.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.103.64.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.109.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.109.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.36.54.218.80.109.224.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.22.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.22.96.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.31.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.52.31.224.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.56.69.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.56.69.96.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.119.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.119.32.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.131.224.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.131.224.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.59.131.224.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.47.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.47.192.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.128.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.61.56.192.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.69.128.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.69.128.160.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.197.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.197.128.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.0.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.96.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.96.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.73.198.96.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.76.139.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.76.139.32.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.77.225.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.77.225.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.40.172.158.77.225.160.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.6.101.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.6.111.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.6.111.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.7.225.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.7.225.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.8.101.0.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.8.178.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.9.132.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.9.132.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.15.230.128.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.88.139.28.184.116.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.112.105.90.156.95.64.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.112.105.90.156.95.64.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.112.105.90.156.95.64.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.180.222.49.102.89.160.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.180.222.49.102.89.160.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.180.222.49.102.89.160.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.244.219.230.228.7.192.0|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.14179.2.2.2.1.11.244.219.230.228.7.192.2|2|3 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.153.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.154.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.0.223.29.42.246.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.30.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.30.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.170.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.170.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.9.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.160.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.160.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.164.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.167.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.205.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.212.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.212.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.230.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.95.147.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.95.147.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.97.136.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.102.87.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.102.134.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.102.134.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.103.175.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.103.175.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.225.4.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.225.4.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.225.42.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.24.249.53.225.42.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.173.249.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.174.126.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.6.101.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.6.101.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.6.111.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.8.101.0.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.8.101.0.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.8.178.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.9.132.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.15.230.128.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.15.230.128.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.184.54.32.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.184.54.32.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.184.116.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.12.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.14179.2.2.2.1.12.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.13.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.14.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.153.160.1|65|3 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.154.224.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.223.29.42.246.64.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.69.209.213.189.0.0|65|3 +1.3.6.1.4.1.14179.2.2.2.1.15.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.247.160.0|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.28.247.160.1|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.230.64.0|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.173.249.0.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.101.224.1|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.103.64.0|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.103.64.1|65|3 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.109.224.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.22.96.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.56.69.96.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.56.69.96.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.47.192.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.77.225.160.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.6.101.160.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.6.111.192.0|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.6.111.192.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.7.225.128.1|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.9.132.128.0|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.9.132.128.1|65|1 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.180.222.49.102.89.160.1|65|2 +1.3.6.1.4.1.14179.2.2.2.1.15.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.2.1.15.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.17.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.18.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.153.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.153.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.153.160.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.154.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.154.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.60.16.104.154.224.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.223.29.42.246.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.223.29.42.246.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.0.223.29.42.246.64.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.69.209.213.189.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.69.209.213.189.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.69.209.213.189.0.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.30.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.30.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.170.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.170.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.247.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.28.247.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.9.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.9.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.160.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.160.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.164.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.164.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.164.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.164.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.167.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.167.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.205.32.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.205.32.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.212.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.212.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.230.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.230.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.230.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.8.123.135.29.230.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.95.147.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.95.147.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.97.136.32.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.97.136.32.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.102.87.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.102.87.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.102.134.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.102.134.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.103.175.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.103.175.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.225.4.192.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.225.4.192.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.225.42.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.24.249.53.225.42.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.173.249.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.173.249.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.173.249.0.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.174.126.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.174.126.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.28.209.224.174.126.128.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.92.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.92.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.92.0.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.101.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.101.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.101.224.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.103.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.103.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.103.64.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.109.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.109.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.36.54.218.80.109.224.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.22.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.22.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.22.96.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.31.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.31.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.52.31.224.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.56.69.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.56.69.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.56.69.96.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.119.32.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.119.32.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.119.32.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.131.224.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.131.224.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.59.131.224.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.47.192.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.47.192.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.47.192.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.128.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.192.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.192.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.61.56.192.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.69.128.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.69.128.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.69.128.160.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.197.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.197.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.197.128.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.0.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.96.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.96.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.73.198.96.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.76.139.32.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.76.139.32.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.76.139.32.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.77.225.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.77.225.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.40.172.158.77.225.160.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.6.101.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.6.101.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.6.111.192.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.6.111.192.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.7.225.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.7.225.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.8.101.0.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.8.101.0.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.8.178.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.8.178.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.9.132.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.9.132.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.15.230.128.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.15.230.128.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.184.54.32.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.184.54.32.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.184.116.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.88.139.28.184.116.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.112.105.90.156.95.64.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.112.105.90.156.95.64.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.112.105.90.156.95.64.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.180.222.49.102.89.160.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.180.222.49.102.89.160.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.180.222.49.102.89.160.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.244.219.230.228.7.192.0|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.244.219.230.228.7.192.1|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.19.244.219.230.228.7.192.2|64x|00000000 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.153.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.154.224.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.0.223.29.42.246.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.0.223.29.42.246.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.8.69.209.213.189.0.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.8.69.209.213.189.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.30.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.30.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.170.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.170.96.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.247.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.28.247.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.9.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.9.128.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.160.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.160.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.164.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.164.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.164.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.164.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.167.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.167.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.205.32.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.205.32.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.212.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.212.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.230.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.230.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.230.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.8.123.135.29.230.96.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.95.147.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.95.147.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.97.136.32.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.97.136.32.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.102.87.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.102.87.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.102.134.96.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.102.134.96.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.103.175.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.103.175.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.225.4.192.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.225.4.192.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.225.42.224.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.24.249.53.225.42.224.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.173.249.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.174.126.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.174.126.128.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.92.0.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.92.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.101.224.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.101.224.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.103.64.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.103.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.109.224.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.109.224.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.22.96.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.22.96.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.31.224.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.31.224.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.56.69.96.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.56.69.96.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.119.32.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.119.32.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.131.224.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.131.224.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.47.192.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.47.192.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.128.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.128.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.192.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.192.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.69.128.160.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.69.128.160.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.197.128.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.197.128.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.0.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.0.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.96.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.96.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.76.139.32.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.76.139.32.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.77.225.160.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.77.225.160.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.6.101.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.6.101.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.6.111.192.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.6.111.192.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.7.225.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.7.225.128.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.8.101.0.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.8.101.0.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.8.178.160.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.8.178.160.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.9.132.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.9.132.128.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.15.230.128.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.15.230.128.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.184.54.32.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.184.54.32.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.184.116.64.0|2|6 +1.3.6.1.4.1.14179.2.2.2.1.20.88.139.28.184.116.64.1|2|10 +1.3.6.1.4.1.14179.2.2.2.1.20.112.105.90.156.95.64.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.112.105.90.156.95.64.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.180.222.49.102.89.160.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.180.222.49.102.89.160.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.20.244.219.230.228.7.192.0|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.244.219.230.228.7.192.1|2|8 +1.3.6.1.4.1.14179.2.2.2.1.20.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.153.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.153.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.153.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.154.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.154.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.0.60.16.104.154.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.0.223.29.42.246.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.0.223.29.42.246.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.0.223.29.42.246.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.8.69.209.213.189.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.69.209.213.189.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.69.209.213.189.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.30.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.30.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.170.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.170.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.247.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.28.247.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.9.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.9.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.160.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.160.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.164.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.164.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.164.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.164.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.167.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.167.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.205.32.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.205.32.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.212.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.212.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.230.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.230.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.230.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.8.123.135.29.230.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.95.147.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.95.147.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.97.136.32.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.97.136.32.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.102.87.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.102.87.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.102.134.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.102.134.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.103.175.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.103.175.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.225.4.192.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.225.4.192.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.225.42.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.24.249.53.225.42.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.173.249.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.173.249.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.173.249.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.174.126.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.174.126.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.28.209.224.174.126.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.92.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.92.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.92.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.101.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.101.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.101.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.103.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.103.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.103.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.109.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.109.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.36.54.218.80.109.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.22.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.22.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.22.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.31.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.31.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.52.31.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.56.69.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.56.69.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.56.69.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.119.32.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.119.32.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.119.32.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.131.224.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.131.224.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.59.131.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.47.192.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.47.192.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.47.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.192.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.192.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.61.56.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.69.128.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.69.128.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.69.128.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.197.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.197.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.197.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.96.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.96.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.73.198.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.76.139.32.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.76.139.32.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.76.139.32.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.77.225.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.77.225.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.40.172.158.77.225.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.6.101.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.6.101.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.6.111.192.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.6.111.192.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.7.225.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.7.225.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.8.101.0.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.8.101.0.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.8.178.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.8.178.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.9.132.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.9.132.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.15.230.128.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.15.230.128.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.184.54.32.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.184.54.32.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.184.116.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.88.139.28.184.116.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.112.105.90.156.95.64.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.112.105.90.156.95.64.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.112.105.90.156.95.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.180.222.49.102.89.160.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.180.222.49.102.89.160.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.180.222.49.102.89.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.21.244.219.230.228.7.192.0|4x|312c322c332c342c352c362c372c382c392c31302c3131 +1.3.6.1.4.1.14179.2.2.2.1.21.244.219.230.228.7.192.1|4x|33362c34302c34342c34382c35322c35362c36302c36342c3130302c3130342c3130382c3131322c3131362c3133322c3133362c3134302c3134392c3135332c3135372c3136312c313635 +1.3.6.1.4.1.14179.2.2.2.1.21.244.219.230.228.7.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.153.160.0|4x|32322c31392c31362c31332c31302c372c342c31 +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.153.160.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.153.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.154.224.0|4x|32322c31392c31362c31332c31302c372c342c31 +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.154.224.1|4x|31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.0.60.16.104.154.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.0.223.29.42.246.64.0|4x|32322c31392c31362c31332c31302c372c342c31 +1.3.6.1.4.1.14179.2.2.2.1.22.0.223.29.42.246.64.1|4x|31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.0.223.29.42.246.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.8.69.209.213.189.0.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.69.209.213.189.0.1|4x|31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.69.209.213.189.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.30.64.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.30.64.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.170.96.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.170.96.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.247.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.28.247.160.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.9.128.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.9.128.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.160.64.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.160.64.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.164.0.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.164.0.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.164.64.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.164.64.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.167.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.167.160.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.205.32.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.205.32.1|4x|32302c31372c31342c31312c382c352c322c2d31 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.212.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.212.160.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.230.64.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.230.64.1|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.230.96.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.8.123.135.29.230.96.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.95.147.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.95.147.160.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.97.136.32.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.97.136.32.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.102.87.0.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.102.87.0.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.102.134.96.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.102.134.96.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.103.175.0.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.103.175.0.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.225.4.192.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.225.4.192.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.225.42.224.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.24.249.53.225.42.224.1|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.173.249.0.0|4x|32322c31392c31362c31332c31302c372c342c31 +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.173.249.0.1|4x|31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.173.249.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.174.126.128.0|4x|32322c31392c31362c31332c31302c372c342c31 +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.174.126.128.1|4x|31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.28.209.224.174.126.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.92.0.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.92.0.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.92.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.101.224.0|4x|32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.101.224.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.101.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.103.64.0|4x|32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.103.64.1|4x|31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.103.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.109.224.0|4x|32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.109.224.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.36.54.218.80.109.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.22.96.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.22.96.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.22.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.31.224.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.31.224.1|4x|31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.52.31.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.56.69.96.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.56.69.96.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.56.69.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.119.32.0|4x|32322c31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.119.32.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.119.32.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.131.224.0|4x|32322c31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.131.224.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.59.131.224.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.47.192.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.47.192.1|4x|31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.47.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.128.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.128.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.192.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.192.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.61.56.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.69.128.160.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.69.128.160.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.69.128.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.197.128.0|4x|32322c31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.197.128.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.197.128.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.0.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.0.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.0.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.96.0|4x|32322c31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.96.1|4x|31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.73.198.96.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.76.139.32.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.76.139.32.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.76.139.32.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.77.225.160.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.77.225.160.1|4x|31382c31352c31322c392c362c332c32 +1.3.6.1.4.1.14179.2.2.2.1.22.40.172.158.77.225.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.6.101.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.6.101.160.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.6.111.192.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.6.111.192.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.7.225.128.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.7.225.128.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.8.101.0.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.8.101.0.1|4x|31392c31362c31332c31302c372c342c312c2d32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.8.178.160.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.8.178.160.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.9.132.128.0|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.9.132.128.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.15.230.128.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.15.230.128.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.184.54.32.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.184.54.32.1|4x|31352c31322c392c362c332c302c2d332c2d34 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.184.116.64.0|4x|31382c31352c31322c392c362c332c302c2d33 +1.3.6.1.4.1.14179.2.2.2.1.22.88.139.28.184.116.64.1|4x|32302c31372c31342c31312c382c352c322c2d31 +1.3.6.1.4.1.14179.2.2.2.1.22.112.105.90.156.95.64.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.112.105.90.156.95.64.1|4x|32332c32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.112.105.90.156.95.64.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.180.222.49.102.89.160.0|4x|31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.180.222.49.102.89.160.1|4x|32302c31372c31342c31312c382c352c32 +1.3.6.1.4.1.14179.2.2.2.1.22.180.222.49.102.89.160.2|4| +1.3.6.1.4.1.14179.2.2.2.1.22.244.219.230.228.7.192.0|4x|32322c31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.244.219.230.228.7.192.1|4x|31392c31362c31332c31302c372c342c32 +1.3.6.1.4.1.14179.2.2.2.1.22.244.219.230.228.7.192.2|4| +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.23.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.23.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.153.160.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.153.160.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.153.160.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.154.224.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.154.224.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.60.16.104.154.224.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.223.29.42.246.64.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.223.29.42.246.64.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.0.223.29.42.246.64.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.8.69.209.213.189.0.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.8.69.209.213.189.0.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.8.69.209.213.189.0.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.30.64.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.30.64.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.170.96.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.170.96.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.247.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.28.247.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.9.128.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.9.128.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.160.64.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.160.64.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.164.0.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.164.0.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.164.64.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.164.64.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.167.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.167.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.205.32.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.205.32.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.212.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.212.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.230.64.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.230.64.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.230.96.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.8.123.135.29.230.96.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.95.147.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.95.147.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.97.136.32.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.97.136.32.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.102.87.0.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.102.87.0.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.102.134.96.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.102.134.96.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.103.175.0.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.103.175.0.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.225.4.192.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.225.4.192.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.225.42.224.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.24.249.53.225.42.224.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.173.249.0.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.173.249.0.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.173.249.0.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.174.126.128.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.174.126.128.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.28.209.224.174.126.128.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.92.0.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.92.0.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.92.0.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.101.224.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.101.224.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.101.224.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.103.64.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.103.64.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.103.64.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.109.224.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.109.224.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.36.54.218.80.109.224.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.22.96.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.22.96.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.22.96.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.31.224.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.31.224.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.52.31.224.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.56.69.96.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.56.69.96.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.56.69.96.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.119.32.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.119.32.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.119.32.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.131.224.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.131.224.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.59.131.224.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.47.192.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.47.192.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.47.192.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.128.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.128.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.128.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.192.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.192.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.61.56.192.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.69.128.160.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.69.128.160.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.69.128.160.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.197.128.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.197.128.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.197.128.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.0.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.0.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.0.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.96.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.96.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.73.198.96.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.76.139.32.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.76.139.32.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.76.139.32.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.77.225.160.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.77.225.160.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.40.172.158.77.225.160.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.6.101.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.6.101.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.6.111.192.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.6.111.192.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.7.225.128.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.7.225.128.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.8.101.0.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.8.101.0.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.8.178.160.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.8.178.160.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.9.132.128.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.9.132.128.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.15.230.128.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.15.230.128.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.184.54.32.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.184.54.32.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.184.116.64.0|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.88.139.28.184.116.64.1|4x|4149522d414e54323533355344572d5253 +1.3.6.1.4.1.14179.2.2.2.1.25.112.105.90.156.95.64.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.112.105.90.156.95.64.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.112.105.90.156.95.64.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.180.222.49.102.89.160.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.180.222.49.102.89.160.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.180.222.49.102.89.160.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.244.219.230.228.7.192.0|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.244.219.230.228.7.192.1|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.25.244.219.230.228.7.192.2|4x|4e2f41 +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.153.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.153.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.153.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.154.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.154.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.60.16.104.154.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.223.29.42.246.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.223.29.42.246.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.0.223.29.42.246.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.69.209.213.189.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.69.209.213.189.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.69.209.213.189.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.30.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.30.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.170.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.170.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.247.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.28.247.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.9.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.9.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.160.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.160.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.164.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.164.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.164.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.164.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.167.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.167.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.205.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.205.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.212.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.212.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.230.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.230.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.230.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.8.123.135.29.230.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.95.147.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.95.147.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.97.136.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.97.136.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.102.87.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.102.87.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.102.134.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.102.134.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.103.175.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.103.175.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.225.4.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.225.4.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.225.42.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.24.249.53.225.42.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.173.249.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.173.249.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.173.249.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.174.126.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.174.126.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.28.209.224.174.126.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.92.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.92.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.92.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.101.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.101.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.101.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.103.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.103.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.103.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.109.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.109.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.36.54.218.80.109.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.22.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.22.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.22.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.31.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.31.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.52.31.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.56.69.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.56.69.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.56.69.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.119.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.119.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.119.32.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.131.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.131.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.59.131.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.47.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.47.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.47.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.61.56.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.69.128.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.69.128.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.69.128.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.197.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.197.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.197.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.73.198.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.76.139.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.76.139.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.76.139.32.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.77.225.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.77.225.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.40.172.158.77.225.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.6.101.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.6.101.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.6.111.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.6.111.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.7.225.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.7.225.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.8.101.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.8.101.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.8.178.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.8.178.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.9.132.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.9.132.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.15.230.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.15.230.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.184.54.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.184.54.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.184.116.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.88.139.28.184.116.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.112.105.90.156.95.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.112.105.90.156.95.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.112.105.90.156.95.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.180.222.49.102.89.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.180.222.49.102.89.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.180.222.49.102.89.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.244.219.230.228.7.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.244.219.230.228.7.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.26.244.219.230.228.7.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.153.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.153.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.153.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.154.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.154.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.60.16.104.154.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.223.29.42.246.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.223.29.42.246.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.0.223.29.42.246.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.69.209.213.189.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.69.209.213.189.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.69.209.213.189.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.30.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.30.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.170.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.170.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.247.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.28.247.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.9.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.9.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.160.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.160.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.164.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.164.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.164.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.164.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.167.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.167.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.205.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.205.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.212.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.212.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.230.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.230.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.230.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.8.123.135.29.230.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.95.147.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.95.147.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.97.136.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.97.136.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.102.87.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.102.87.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.102.134.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.102.134.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.103.175.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.103.175.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.225.4.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.225.4.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.225.42.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.24.249.53.225.42.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.173.249.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.173.249.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.173.249.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.174.126.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.174.126.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.28.209.224.174.126.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.92.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.92.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.92.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.101.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.101.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.101.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.103.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.103.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.103.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.109.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.109.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.36.54.218.80.109.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.22.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.22.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.22.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.31.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.31.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.52.31.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.56.69.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.56.69.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.56.69.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.119.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.119.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.119.32.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.131.224.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.131.224.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.59.131.224.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.47.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.47.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.47.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.61.56.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.69.128.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.69.128.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.69.128.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.197.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.197.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.197.128.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.0.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.96.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.96.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.73.198.96.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.76.139.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.76.139.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.76.139.32.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.77.225.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.77.225.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.40.172.158.77.225.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.6.101.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.6.101.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.6.111.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.6.111.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.7.225.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.7.225.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.8.101.0.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.8.101.0.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.8.178.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.8.178.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.9.132.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.9.132.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.15.230.128.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.15.230.128.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.184.54.32.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.184.54.32.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.184.116.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.88.139.28.184.116.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.112.105.90.156.95.64.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.112.105.90.156.95.64.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.112.105.90.156.95.64.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.180.222.49.102.89.160.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.180.222.49.102.89.160.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.180.222.49.102.89.160.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.244.219.230.228.7.192.0|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.244.219.230.228.7.192.1|4|None +1.3.6.1.4.1.14179.2.2.2.1.27.244.219.230.228.7.192.2|4|None +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.2.1.28.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.2.1.34.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.153.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.153.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.154.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.154.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.0.223.29.42.246.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.223.29.42.246.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.8.69.209.213.189.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.69.209.213.189.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.30.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.30.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.170.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.170.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.247.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.28.247.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.9.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.9.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.160.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.160.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.164.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.164.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.164.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.164.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.167.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.167.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.205.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.205.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.212.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.212.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.230.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.230.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.230.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.8.123.135.29.230.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.95.147.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.95.147.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.97.136.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.97.136.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.102.87.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.102.87.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.102.134.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.102.134.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.103.175.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.103.175.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.225.4.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.225.4.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.225.42.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.24.249.53.225.42.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.173.249.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.173.249.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.174.126.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.174.126.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.92.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.92.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.101.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.101.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.103.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.103.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.109.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.109.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.22.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.22.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.31.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.31.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.56.69.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.56.69.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.119.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.119.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.131.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.131.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.47.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.47.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.69.128.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.69.128.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.197.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.197.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.76.139.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.76.139.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.77.225.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.77.225.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.6.101.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.6.101.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.6.111.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.6.111.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.7.225.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.7.225.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.8.101.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.8.101.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.8.178.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.8.178.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.9.132.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.9.132.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.15.230.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.15.230.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.184.54.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.184.54.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.184.116.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.88.139.28.184.116.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.112.105.90.156.95.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.112.105.90.156.95.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.180.222.49.102.89.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.180.222.49.102.89.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.1.244.219.230.228.7.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.244.219.230.228.7.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.1.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.153.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.153.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.154.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.154.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.0.223.29.42.246.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.223.29.42.246.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.8.69.209.213.189.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.69.209.213.189.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.30.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.30.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.170.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.170.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.247.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.28.247.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.9.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.9.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.160.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.160.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.164.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.164.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.164.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.164.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.167.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.167.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.205.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.205.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.212.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.212.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.230.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.230.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.230.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.8.123.135.29.230.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.95.147.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.95.147.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.97.136.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.97.136.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.102.87.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.102.87.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.102.134.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.102.134.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.103.175.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.103.175.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.225.4.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.225.4.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.225.42.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.24.249.53.225.42.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.173.249.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.173.249.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.174.126.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.174.126.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.92.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.92.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.101.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.101.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.103.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.103.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.109.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.109.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.22.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.22.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.31.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.31.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.56.69.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.56.69.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.119.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.119.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.131.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.131.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.47.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.47.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.69.128.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.69.128.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.197.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.197.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.76.139.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.76.139.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.77.225.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.77.225.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.6.101.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.6.101.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.6.111.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.6.111.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.7.225.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.7.225.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.8.101.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.8.101.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.8.178.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.8.178.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.9.132.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.9.132.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.15.230.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.15.230.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.184.54.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.184.54.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.184.116.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.88.139.28.184.116.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.112.105.90.156.95.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.112.105.90.156.95.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.180.222.49.102.89.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.180.222.49.102.89.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.2.244.219.230.228.7.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.244.219.230.228.7.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.153.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.154.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.0.223.29.42.246.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.223.29.42.246.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.30.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.30.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.170.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.170.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.247.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.28.247.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.9.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.9.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.160.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.160.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.164.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.164.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.164.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.164.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.167.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.167.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.205.32.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.205.32.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.212.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.212.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.230.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.230.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.230.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.8.123.135.29.230.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.95.147.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.95.147.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.97.136.32.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.97.136.32.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.102.87.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.102.87.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.102.134.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.102.134.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.103.175.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.103.175.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.225.4.192.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.225.4.192.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.225.42.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.24.249.53.225.42.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.173.249.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.173.249.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.92.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.92.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.101.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.101.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.103.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.109.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.22.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.31.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.31.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.56.69.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.56.69.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.119.32.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.119.32.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.131.224.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.47.192.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.47.192.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.192.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.192.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.69.128.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.197.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.197.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.96.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.96.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.76.139.32.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.76.139.32.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.77.225.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.77.225.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.6.101.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.6.101.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.6.111.192.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.6.111.192.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.7.225.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.7.225.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.8.101.0.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.8.101.0.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.8.178.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.9.132.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.9.132.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.15.230.128.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.15.230.128.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.184.54.32.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.184.54.32.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.184.116.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.88.139.28.184.116.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.112.105.90.156.95.64.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.112.105.90.156.95.64.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.180.222.49.102.89.160.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.180.222.49.102.89.160.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.3.244.219.230.228.7.192.0|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.244.219.230.228.7.192.1|2|4 +1.3.6.1.4.1.14179.2.2.3.1.3.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.153.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.153.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.154.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.154.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.0.223.29.42.246.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.223.29.42.246.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.8.69.209.213.189.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.69.209.213.189.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.30.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.30.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.170.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.170.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.247.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.28.247.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.9.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.9.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.160.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.160.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.164.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.164.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.164.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.164.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.167.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.167.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.205.32.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.205.32.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.212.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.212.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.230.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.230.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.230.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.8.123.135.29.230.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.95.147.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.95.147.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.97.136.32.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.97.136.32.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.102.87.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.102.87.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.102.134.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.102.134.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.103.175.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.103.175.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.225.4.192.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.225.4.192.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.225.42.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.24.249.53.225.42.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.173.249.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.173.249.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.174.126.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.174.126.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.92.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.92.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.101.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.101.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.103.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.103.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.109.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.109.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.22.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.22.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.31.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.31.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.56.69.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.56.69.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.119.32.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.119.32.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.131.224.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.131.224.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.47.192.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.47.192.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.192.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.192.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.69.128.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.69.128.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.197.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.197.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.96.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.96.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.76.139.32.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.76.139.32.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.77.225.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.77.225.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.6.101.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.6.101.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.6.111.192.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.6.111.192.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.7.225.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.7.225.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.8.101.0.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.8.101.0.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.8.178.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.8.178.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.9.132.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.9.132.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.15.230.128.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.15.230.128.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.184.54.32.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.184.54.32.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.184.116.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.88.139.28.184.116.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.112.105.90.156.95.64.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.112.105.90.156.95.64.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.180.222.49.102.89.160.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.180.222.49.102.89.160.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.4.244.219.230.228.7.192.0|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.244.219.230.228.7.192.1|2|60 +1.3.6.1.4.1.14179.2.2.3.1.4.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.153.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.153.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.153.160.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.154.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.154.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.60.16.104.154.224.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.223.29.42.246.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.223.29.42.246.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.0.223.29.42.246.64.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.69.209.213.189.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.69.209.213.189.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.69.209.213.189.0.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.30.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.30.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.170.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.170.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.247.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.28.247.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.9.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.9.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.160.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.160.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.164.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.164.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.164.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.164.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.167.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.167.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.205.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.205.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.212.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.212.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.230.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.230.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.230.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.8.123.135.29.230.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.95.147.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.95.147.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.97.136.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.97.136.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.102.87.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.102.87.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.102.134.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.102.134.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.103.175.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.103.175.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.225.4.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.225.4.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.225.42.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.24.249.53.225.42.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.173.249.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.173.249.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.173.249.0.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.174.126.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.174.126.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.28.209.224.174.126.128.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.92.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.92.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.92.0.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.101.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.101.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.101.224.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.103.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.103.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.103.64.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.109.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.109.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.36.54.218.80.109.224.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.22.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.22.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.22.96.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.31.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.31.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.52.31.224.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.56.69.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.56.69.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.56.69.96.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.119.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.119.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.119.32.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.131.224.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.131.224.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.59.131.224.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.47.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.47.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.47.192.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.128.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.61.56.192.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.69.128.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.69.128.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.69.128.160.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.197.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.197.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.197.128.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.0.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.96.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.96.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.73.198.96.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.76.139.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.76.139.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.76.139.32.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.77.225.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.77.225.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.40.172.158.77.225.160.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.6.101.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.6.101.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.6.111.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.6.111.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.7.225.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.7.225.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.8.101.0.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.8.101.0.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.8.178.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.8.178.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.9.132.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.9.132.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.15.230.128.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.15.230.128.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.184.54.32.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.184.54.32.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.184.116.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.88.139.28.184.116.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.112.105.90.156.95.64.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.112.105.90.156.95.64.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.112.105.90.156.95.64.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.180.222.49.102.89.160.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.180.222.49.102.89.160.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.180.222.49.102.89.160.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.244.219.230.228.7.192.0|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.244.219.230.228.7.192.1|2|100 +1.3.6.1.4.1.14179.2.2.3.1.6.244.219.230.228.7.192.2|2|100 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.7.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.3.1.8.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.153.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.153.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.153.160.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.154.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.154.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.60.16.104.154.224.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.0.223.29.42.246.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.223.29.42.246.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.0.223.29.42.246.64.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.8.69.209.213.189.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.69.209.213.189.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.69.209.213.189.0.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.30.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.30.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.170.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.170.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.247.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.28.247.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.9.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.9.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.160.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.160.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.164.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.164.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.164.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.164.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.167.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.167.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.205.32.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.205.32.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.212.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.212.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.230.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.230.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.230.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.8.123.135.29.230.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.95.147.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.95.147.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.97.136.32.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.97.136.32.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.102.87.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.102.87.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.102.134.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.102.134.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.103.175.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.103.175.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.225.4.192.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.225.4.192.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.225.42.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.24.249.53.225.42.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.173.249.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.173.249.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.173.249.0.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.174.126.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.174.126.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.28.209.224.174.126.128.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.92.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.92.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.92.0.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.101.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.101.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.101.224.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.103.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.103.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.103.64.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.109.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.109.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.36.54.218.80.109.224.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.22.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.22.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.22.96.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.31.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.31.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.52.31.224.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.56.69.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.56.69.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.56.69.96.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.119.32.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.119.32.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.119.32.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.131.224.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.131.224.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.59.131.224.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.47.192.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.47.192.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.47.192.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.128.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.192.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.192.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.61.56.192.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.69.128.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.69.128.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.69.128.160.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.197.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.197.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.197.128.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.0.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.96.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.96.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.73.198.96.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.76.139.32.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.76.139.32.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.76.139.32.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.77.225.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.77.225.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.40.172.158.77.225.160.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.6.101.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.6.101.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.6.111.192.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.6.111.192.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.7.225.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.7.225.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.8.101.0.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.8.101.0.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.8.178.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.8.178.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.9.132.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.9.132.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.15.230.128.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.15.230.128.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.184.54.32.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.184.54.32.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.184.116.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.88.139.28.184.116.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.112.105.90.156.95.64.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.112.105.90.156.95.64.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.112.105.90.156.95.64.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.180.222.49.102.89.160.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.180.222.49.102.89.160.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.180.222.49.102.89.160.2|4| +1.3.6.1.4.1.14179.2.2.3.1.9.244.219.230.228.7.192.0|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.244.219.230.228.7.192.1|4x|504820 +1.3.6.1.4.1.14179.2.2.3.1.9.244.219.230.228.7.192.2|4| +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.3.1.10.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.153.160.0|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.153.160.1|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.153.160.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.154.224.0|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.154.224.1|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.3.1.30.0.60.16.104.154.224.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.0.223.29.42.246.64.0|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.3.1.30.0.223.29.42.246.64.1|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.3.1.30.0.223.29.42.246.64.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.8.69.209.213.189.0.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.3.1.30.8.69.209.213.189.0.1|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.3.1.30.8.69.209.213.189.0.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.30.64.0|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.30.64.1|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.170.96.0|4x|087b871caa60 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.170.96.1|4x|087b871caa60 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.247.160.0|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.28.247.160.1|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.9.128.0|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.9.128.1|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.160.64.0|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.160.64.1|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.164.0.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.164.0.1|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.164.64.0|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.164.64.1|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.167.160.0|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.167.160.1|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.205.32.0|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.205.32.1|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.212.160.0|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.212.160.1|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.230.64.0|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.230.64.1|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.230.96.0|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.3.1.30.8.123.135.29.230.96.1|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.95.147.160.0|4x|18f9355f93a0 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.95.147.160.1|4x|18f9355f93a0 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.97.136.32.0|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.97.136.32.1|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.102.87.0.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.102.87.0.1|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.102.134.96.0|4x|18f935668660 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.102.134.96.1|4x|18f935668660 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.103.175.0.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.103.175.0.1|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.225.4.192.0|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.225.4.192.1|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.225.42.224.0|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.3.1.30.24.249.53.225.42.224.1|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.173.249.0.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.173.249.0.1|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.173.249.0.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.174.126.128.0|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.174.126.128.1|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.3.1.30.28.209.224.174.126.128.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.92.0.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.92.0.1|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.92.0.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.101.224.0|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.101.224.1|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.101.224.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.103.64.0|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.103.64.1|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.103.64.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.109.224.0|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.109.224.1|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.3.1.30.36.54.218.80.109.224.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.22.96.0|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.22.96.1|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.22.96.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.31.224.0|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.31.224.1|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.52.31.224.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.56.69.96.0|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.56.69.96.1|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.56.69.96.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.119.32.0|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.119.32.1|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.119.32.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.131.224.0|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.131.224.1|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.59.131.224.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.47.192.0|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.47.192.1|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.47.192.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.128.0|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.128.1|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.128.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.192.0|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.192.1|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.61.56.192.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.69.128.160.0|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.69.128.160.1|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.69.128.160.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.197.128.0|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.197.128.1|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.197.128.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.0.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.0.1|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.0.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.96.0|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.96.1|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.73.198.96.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.76.139.32.0|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.76.139.32.1|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.76.139.32.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.77.225.160.0|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.77.225.160.1|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.3.1.30.40.172.158.77.225.160.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.6.101.160.0|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.6.101.160.1|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.6.111.192.0|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.6.111.192.1|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.7.225.128.0|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.7.225.128.1|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.8.101.0.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.8.101.0.1|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.8.178.160.0|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.8.178.160.1|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.9.132.128.0|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.9.132.128.1|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.15.230.128.0|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.15.230.128.1|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.184.54.32.0|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.184.54.32.1|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.184.116.64.0|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.3.1.30.88.139.28.184.116.64.1|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.3.1.30.112.105.90.156.95.64.0|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.3.1.30.112.105.90.156.95.64.1|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.3.1.30.112.105.90.156.95.64.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.180.222.49.102.89.160.0|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.3.1.30.180.222.49.102.89.160.1|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.3.1.30.180.222.49.102.89.160.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.3.1.30.244.219.230.228.7.192.0|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.3.1.30.244.219.230.228.7.192.1|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.3.1.30.244.219.230.228.7.192.2|4x|000000000000 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.4.1.1.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.153.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.154.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.0.223.29.42.246.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.69.209.213.189.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.30.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.170.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.28.247.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.9.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.160.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.164.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.164.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.167.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.205.32.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.212.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.230.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.8.123.135.29.230.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.95.147.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.97.136.32.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.102.87.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.102.134.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.103.175.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.225.4.192.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.24.249.53.225.42.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.173.249.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.174.126.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.92.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.101.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.103.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.109.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.22.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.31.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.56.69.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.119.32.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.131.224.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.47.192.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.192.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.69.128.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.197.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.96.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.76.139.32.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.77.225.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.6.101.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.6.111.192.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.7.225.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.8.101.0.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.8.178.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.9.132.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.15.230.128.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.184.54.32.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.88.139.28.184.116.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.112.105.90.156.95.64.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.180.222.49.102.89.160.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.2.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.4.1.2.244.219.230.228.7.192.1|2|36 +1.3.6.1.4.1.14179.2.2.4.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.153.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.153.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.154.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.154.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.0.223.29.42.246.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.0.223.29.42.246.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.8.69.209.213.189.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.69.209.213.189.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.30.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.30.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.170.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.170.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.247.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.28.247.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.9.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.9.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.160.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.160.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.164.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.164.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.164.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.164.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.167.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.167.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.205.32.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.205.32.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.212.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.212.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.230.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.230.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.230.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.8.123.135.29.230.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.95.147.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.95.147.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.97.136.32.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.97.136.32.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.102.87.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.102.87.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.102.134.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.102.134.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.103.175.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.103.175.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.225.4.192.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.225.4.192.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.225.42.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.24.249.53.225.42.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.173.249.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.173.249.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.174.126.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.174.126.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.92.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.92.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.101.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.101.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.103.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.103.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.109.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.22.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.22.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.31.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.31.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.56.69.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.56.69.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.119.32.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.119.32.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.131.224.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.131.224.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.47.192.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.47.192.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.192.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.192.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.69.128.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.69.128.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.197.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.197.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.96.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.96.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.76.139.32.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.76.139.32.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.77.225.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.77.225.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.6.101.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.6.101.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.6.111.192.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.6.111.192.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.7.225.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.7.225.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.8.101.0.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.8.101.0.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.8.178.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.8.178.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.9.132.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.9.132.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.15.230.128.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.15.230.128.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.184.54.32.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.184.54.32.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.184.116.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.88.139.28.184.116.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.112.105.90.156.95.64.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.112.105.90.156.95.64.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.180.222.49.102.89.160.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.180.222.49.102.89.160.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.4.1.20.244.219.230.228.7.192.0|2|11 +1.3.6.1.4.1.14179.2.2.4.1.20.244.219.230.228.7.192.1|2|21 +1.3.6.1.4.1.14179.2.2.4.1.20.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.153.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.153.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.154.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.154.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.0.223.29.42.246.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.223.29.42.246.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.8.69.209.213.189.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.69.209.213.189.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.30.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.30.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.170.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.170.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.247.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.28.247.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.9.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.9.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.160.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.160.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.164.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.164.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.164.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.164.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.167.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.167.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.205.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.205.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.212.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.212.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.230.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.230.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.230.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.8.123.135.29.230.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.95.147.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.95.147.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.97.136.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.97.136.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.102.87.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.102.87.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.102.134.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.102.134.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.103.175.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.103.175.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.225.4.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.225.4.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.225.42.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.24.249.53.225.42.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.173.249.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.173.249.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.174.126.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.174.126.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.92.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.92.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.101.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.101.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.103.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.103.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.109.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.109.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.22.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.22.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.31.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.31.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.56.69.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.56.69.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.119.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.119.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.131.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.131.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.47.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.47.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.69.128.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.69.128.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.197.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.197.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.76.139.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.76.139.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.77.225.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.77.225.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.6.101.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.6.101.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.6.111.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.6.111.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.7.225.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.7.225.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.8.101.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.8.101.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.8.178.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.8.178.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.9.132.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.9.132.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.15.230.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.15.230.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.184.54.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.184.54.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.184.116.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.88.139.28.184.116.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.112.105.90.156.95.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.112.105.90.156.95.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.180.222.49.102.89.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.180.222.49.102.89.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.1.244.219.230.228.7.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.244.219.230.228.7.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.5.1.1.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.153.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.153.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.154.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.154.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.0.223.29.42.246.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.223.29.42.246.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.8.69.209.213.189.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.69.209.213.189.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.30.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.30.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.170.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.170.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.247.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.28.247.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.9.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.9.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.160.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.160.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.164.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.164.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.164.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.164.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.167.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.167.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.205.32.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.205.32.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.212.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.212.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.230.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.230.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.230.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.8.123.135.29.230.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.95.147.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.95.147.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.97.136.32.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.97.136.32.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.102.87.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.102.87.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.102.134.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.102.134.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.103.175.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.103.175.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.225.4.192.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.225.4.192.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.225.42.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.24.249.53.225.42.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.173.249.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.173.249.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.174.126.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.174.126.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.92.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.92.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.101.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.101.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.103.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.103.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.109.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.22.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.22.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.31.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.31.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.56.69.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.56.69.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.119.32.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.119.32.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.131.224.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.131.224.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.47.192.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.47.192.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.192.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.192.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.69.128.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.69.128.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.197.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.197.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.96.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.96.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.76.139.32.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.76.139.32.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.77.225.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.77.225.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.6.101.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.6.101.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.6.111.192.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.6.111.192.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.7.225.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.7.225.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.8.101.0.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.8.101.0.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.8.178.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.8.178.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.9.132.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.9.132.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.15.230.128.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.15.230.128.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.184.54.32.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.184.54.32.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.184.116.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.88.139.28.184.116.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.112.105.90.156.95.64.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.112.105.90.156.95.64.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.180.222.49.102.89.160.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.180.222.49.102.89.160.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.2.244.219.230.228.7.192.0|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.244.219.230.228.7.192.1|2|7 +1.3.6.1.4.1.14179.2.2.5.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.153.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.154.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.154.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.0.223.29.42.246.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.223.29.42.246.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.8.69.209.213.189.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.30.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.30.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.170.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.170.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.247.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.28.247.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.9.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.9.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.160.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.160.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.164.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.164.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.164.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.164.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.167.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.167.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.205.32.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.205.32.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.212.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.212.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.230.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.230.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.230.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.8.123.135.29.230.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.95.147.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.95.147.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.97.136.32.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.97.136.32.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.102.87.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.102.87.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.102.134.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.102.134.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.103.175.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.103.175.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.225.4.192.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.225.4.192.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.225.42.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.24.249.53.225.42.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.173.249.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.173.249.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.92.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.92.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.101.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.101.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.103.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.103.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.109.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.22.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.22.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.31.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.31.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.56.69.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.56.69.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.119.32.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.119.32.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.131.224.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.47.192.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.47.192.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.192.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.192.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.69.128.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.197.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.197.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.96.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.96.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.76.139.32.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.76.139.32.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.77.225.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.77.225.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.6.101.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.6.101.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.6.111.192.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.6.111.192.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.7.225.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.7.225.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.8.101.0.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.8.101.0.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.8.178.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.9.132.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.9.132.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.15.230.128.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.15.230.128.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.184.54.32.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.184.54.32.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.184.116.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.88.139.28.184.116.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.112.105.90.156.95.64.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.112.105.90.156.95.64.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.180.222.49.102.89.160.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.180.222.49.102.89.160.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.3.244.219.230.228.7.192.0|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.244.219.230.228.7.192.1|2|4 +1.3.6.1.4.1.14179.2.2.5.1.3.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.153.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.153.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.154.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.154.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.0.223.29.42.246.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.223.29.42.246.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.8.69.209.213.189.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.69.209.213.189.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.30.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.30.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.170.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.170.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.247.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.28.247.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.9.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.9.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.160.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.160.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.164.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.164.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.164.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.164.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.167.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.167.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.205.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.205.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.212.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.212.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.230.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.230.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.230.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.8.123.135.29.230.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.95.147.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.95.147.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.97.136.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.97.136.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.102.87.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.102.87.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.102.134.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.102.134.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.103.175.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.103.175.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.225.4.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.225.4.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.225.42.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.24.249.53.225.42.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.173.249.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.173.249.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.174.126.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.174.126.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.92.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.92.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.101.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.101.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.103.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.103.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.109.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.109.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.22.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.22.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.31.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.31.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.56.69.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.56.69.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.119.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.119.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.131.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.131.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.47.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.47.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.69.128.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.69.128.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.197.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.197.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.76.139.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.76.139.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.77.225.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.77.225.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.6.101.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.6.101.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.6.111.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.6.111.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.7.225.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.7.225.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.8.101.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.8.101.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.8.178.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.8.178.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.9.132.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.9.132.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.15.230.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.15.230.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.184.54.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.184.54.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.184.116.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.88.139.28.184.116.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.112.105.90.156.95.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.112.105.90.156.95.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.180.222.49.102.89.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.180.222.49.102.89.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.4.244.219.230.228.7.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.244.219.230.228.7.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.5.1.4.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.153.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.153.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.154.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.154.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.0.223.29.42.246.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.223.29.42.246.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.8.69.209.213.189.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.69.209.213.189.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.30.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.30.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.170.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.170.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.247.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.28.247.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.9.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.9.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.160.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.160.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.164.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.164.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.164.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.164.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.167.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.167.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.205.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.205.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.212.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.212.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.230.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.230.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.230.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.8.123.135.29.230.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.95.147.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.95.147.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.97.136.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.97.136.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.102.87.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.102.87.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.102.134.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.102.134.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.103.175.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.103.175.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.225.4.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.225.4.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.225.42.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.24.249.53.225.42.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.173.249.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.173.249.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.174.126.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.174.126.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.92.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.92.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.101.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.101.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.103.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.103.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.109.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.109.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.22.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.22.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.31.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.31.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.56.69.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.56.69.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.119.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.119.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.131.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.131.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.47.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.47.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.69.128.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.69.128.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.197.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.197.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.76.139.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.76.139.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.77.225.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.77.225.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.6.101.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.6.101.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.6.111.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.6.111.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.7.225.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.7.225.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.8.101.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.8.101.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.8.178.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.8.178.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.9.132.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.9.132.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.15.230.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.15.230.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.184.54.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.184.54.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.184.116.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.88.139.28.184.116.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.112.105.90.156.95.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.112.105.90.156.95.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.180.222.49.102.89.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.180.222.49.102.89.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.5.244.219.230.228.7.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.244.219.230.228.7.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.5.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.153.160.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.60.16.104.154.224.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.0.223.29.42.246.64.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.69.209.213.189.0.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.173.249.0.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.28.209.224.174.126.128.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.92.0.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.101.224.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.103.64.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.36.54.218.80.109.224.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.22.96.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.52.31.224.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.56.69.96.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.119.32.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.59.131.224.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.47.192.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.128.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.61.56.192.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.69.128.160.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.197.128.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.0.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.73.198.96.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.76.139.32.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.40.172.158.77.225.160.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.112.105.90.156.95.64.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.180.222.49.102.89.160.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.5.1.6.244.219.230.228.7.192.2|2|1 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.153.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.153.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.153.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.154.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.154.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.60.16.104.154.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.0.223.29.42.246.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.223.29.42.246.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.0.223.29.42.246.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.8.69.209.213.189.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.69.209.213.189.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.69.209.213.189.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.30.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.30.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.170.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.170.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.247.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.28.247.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.9.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.9.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.160.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.160.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.164.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.164.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.164.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.164.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.167.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.167.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.205.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.205.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.212.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.212.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.230.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.230.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.230.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.8.123.135.29.230.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.95.147.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.95.147.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.97.136.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.97.136.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.102.87.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.102.87.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.102.134.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.102.134.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.103.175.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.103.175.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.225.4.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.225.4.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.225.42.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.24.249.53.225.42.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.173.249.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.173.249.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.173.249.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.174.126.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.174.126.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.28.209.224.174.126.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.92.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.92.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.92.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.101.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.101.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.101.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.103.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.103.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.103.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.109.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.109.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.36.54.218.80.109.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.22.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.22.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.22.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.31.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.31.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.52.31.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.56.69.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.56.69.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.56.69.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.119.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.119.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.119.32.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.131.224.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.131.224.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.59.131.224.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.47.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.47.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.47.192.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.61.56.192.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.69.128.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.69.128.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.69.128.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.197.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.197.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.197.128.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.0.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.96.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.96.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.73.198.96.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.76.139.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.76.139.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.76.139.32.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.77.225.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.77.225.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.40.172.158.77.225.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.6.101.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.6.101.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.6.111.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.6.111.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.7.225.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.7.225.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.8.101.0.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.8.101.0.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.8.178.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.8.178.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.9.132.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.9.132.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.15.230.128.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.15.230.128.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.184.54.32.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.184.54.32.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.184.116.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.88.139.28.184.116.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.112.105.90.156.95.64.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.112.105.90.156.95.64.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.112.105.90.156.95.64.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.180.222.49.102.89.160.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.180.222.49.102.89.160.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.180.222.49.102.89.160.2|66|0 +1.3.6.1.4.1.14179.2.2.5.1.25.244.219.230.228.7.192.0|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.244.219.230.228.7.192.1|66|512 +1.3.6.1.4.1.14179.2.2.5.1.25.244.219.230.228.7.192.2|66|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.1.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.69.209.213.189.0.0|65|10919 +1.3.6.1.4.1.14179.2.2.6.1.2.8.69.209.213.189.0.1|65|85306 +1.3.6.1.4.1.14179.2.2.6.1.2.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.92.0.0|65|115973 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.92.0.1|65|841661 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.101.224.0|65|115976 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.101.224.1|65|882685 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.103.64.0|65|11045 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.103.64.1|65|57412 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.109.224.0|65|10919 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.109.224.1|65|85866 +1.3.6.1.4.1.14179.2.2.6.1.2.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.22.96.0|65|10908 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.22.96.1|65|84027 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.31.224.0|65|115993 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.31.224.1|65|924709 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.56.69.96.0|65|115977 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.56.69.96.1|65|878508 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.119.32.0|65|10906 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.119.32.1|65|75699 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.131.224.0|65|115992 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.131.224.1|65|911586 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.47.192.0|65|115983 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.47.192.1|65|899058 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.128.0|65|10906 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.128.1|65|71026 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.192.0|65|10908 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.192.1|65|75621 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.69.128.160.0|65|10905 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.69.128.160.1|65|75428 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.197.128.0|65|10906 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.197.128.1|65|79454 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.0.0|65|10905 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.0.1|65|72017 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.96.0|65|10909 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.96.1|65|80361 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.76.139.32.0|65|10907 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.76.139.32.1|65|71857 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.77.225.160.0|65|10911 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.77.225.160.1|65|85889 +1.3.6.1.4.1.14179.2.2.6.1.2.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.112.105.90.156.95.64.0|65|10906 +1.3.6.1.4.1.14179.2.2.6.1.2.112.105.90.156.95.64.1|65|73177 +1.3.6.1.4.1.14179.2.2.6.1.2.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.180.222.49.102.89.160.0|65|55038 +1.3.6.1.4.1.14179.2.2.6.1.2.180.222.49.102.89.160.1|65|302505 +1.3.6.1.4.1.14179.2.2.6.1.2.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.2.244.219.230.228.7.192.0|65|115983 +1.3.6.1.4.1.14179.2.2.6.1.2.244.219.230.228.7.192.1|65|913485 +1.3.6.1.4.1.14179.2.2.6.1.2.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.153.160.0|65|3299843 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.153.160.1|65|14715215 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.154.224.0|65|2224702 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.154.224.1|65|7625296 +1.3.6.1.4.1.14179.2.2.6.1.3.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.0.223.29.42.246.64.0|65|135652 +1.3.6.1.4.1.14179.2.2.6.1.3.0.223.29.42.246.64.1|65|1084871 +1.3.6.1.4.1.14179.2.2.6.1.3.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.8.69.209.213.189.0.0|65|1829643 +1.3.6.1.4.1.14179.2.2.6.1.3.8.69.209.213.189.0.1|65|17928278 +1.3.6.1.4.1.14179.2.2.6.1.3.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.30.64.0|65|71157 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.30.64.1|65|2467 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.170.96.0|65|170299044 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.170.96.1|65|12497613 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.247.160.0|65|9883387 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.28.247.160.1|65|5130489 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.9.128.0|65|32 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.9.128.1|65|6 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.160.64.0|65|128512 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.160.64.1|65|3162 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.164.0.0|65|66 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.164.0.1|65|10 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.164.64.0|65|574275 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.164.64.1|65|4920 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.167.160.0|65|1198889 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.167.160.1|65|1051422 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.205.32.1|65|247 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.212.160.0|65|51924 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.212.160.1|65|1023323 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.230.64.0|65|93587 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.230.64.1|65|25552 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.230.96.0|65|2154708 +1.3.6.1.4.1.14179.2.2.6.1.3.8.123.135.29.230.96.1|65|75332 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.95.147.160.0|65|10397 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.95.147.160.1|65|1091 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.97.136.32.0|65|33 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.97.136.32.1|65|5 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.102.87.0.0|65|537767 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.102.87.0.1|65|757225 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.102.134.96.0|65|695120 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.102.134.96.1|65|18342 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.103.175.0.0|65|168 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.103.175.0.1|65|65 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.225.4.192.0|65|71706 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.225.4.192.1|65|948 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.225.42.224.0|65|14178 +1.3.6.1.4.1.14179.2.2.6.1.3.24.249.53.225.42.224.1|65|659767 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.173.249.0.0|65|621521 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.173.249.0.1|65|9782534 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.174.126.128.0|65|2955077 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.174.126.128.1|65|7438662 +1.3.6.1.4.1.14179.2.2.6.1.3.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.92.0.0|65|2437151 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.92.0.1|65|12427936 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.101.224.0|65|2148344 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.101.224.1|65|17249934 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.103.64.0|65|5438169 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.103.64.1|65|97515856 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.109.224.0|65|364059 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.109.224.1|65|8398131 +1.3.6.1.4.1.14179.2.2.6.1.3.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.22.96.0|65|62720 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.22.96.1|65|6078921 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.31.224.0|65|10559453 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.31.224.1|65|13216441 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.56.69.96.0|65|2741565 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.56.69.96.1|65|8268432 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.119.32.0|65|578 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.119.32.1|65|2499 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.131.224.0|65|1476022 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.131.224.1|65|141294012 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.47.192.0|65|392435 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.47.192.1|65|9900766 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.128.0|65|171 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.128.1|65|9772 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.192.0|65|774 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.192.1|65|3797 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.69.128.160.0|65|48823 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.69.128.160.1|65|69858 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.197.128.0|65|88950 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.197.128.1|65|272114 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.0.0|65|93930 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.0.1|65|65323 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.96.0|65|103953 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.96.1|65|76766 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.76.139.32.0|65|8002 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.76.139.32.1|65|145118 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.77.225.160.0|65|743765 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.77.225.160.1|65|4244824 +1.3.6.1.4.1.14179.2.2.6.1.3.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.6.101.160.0|65|1220337 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.6.101.160.1|65|8337634 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.6.111.192.0|65|86807080 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.6.111.192.1|65|132383187 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.7.225.128.0|65|6063 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.7.225.128.1|65|2688878 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.8.101.0.0|65|113902 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.8.101.0.1|65|180074 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.8.178.160.0|65|68289 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.8.178.160.1|65|357515 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.9.132.128.0|65|1706774 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.9.132.128.1|65|133287 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.15.230.128.0|65|4482215 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.15.230.128.1|65|3438591 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.184.54.32.0|65|6152397 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.184.54.32.1|65|749288 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.184.116.64.0|65|3731168 +1.3.6.1.4.1.14179.2.2.6.1.3.88.139.28.184.116.64.1|65|17716014 +1.3.6.1.4.1.14179.2.2.6.1.3.112.105.90.156.95.64.0|65|6 +1.3.6.1.4.1.14179.2.2.6.1.3.112.105.90.156.95.64.1|65|2967 +1.3.6.1.4.1.14179.2.2.6.1.3.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.180.222.49.102.89.160.0|65|113181637 +1.3.6.1.4.1.14179.2.2.6.1.3.180.222.49.102.89.160.1|65|198497867 +1.3.6.1.4.1.14179.2.2.6.1.3.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.3.244.219.230.228.7.192.0|65|4876331 +1.3.6.1.4.1.14179.2.2.6.1.3.244.219.230.228.7.192.1|65|8130843 +1.3.6.1.4.1.14179.2.2.6.1.3.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.4.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.5.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.8.69.209.213.189.0.0|65|953205 +1.3.6.1.4.1.14179.2.2.6.1.6.8.69.209.213.189.0.1|65|9637415 +1.3.6.1.4.1.14179.2.2.6.1.6.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.30.64.0|65|103108 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.30.64.1|65|4711 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.170.96.0|65|224576785 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.170.96.1|65|152348773 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.247.160.0|65|7825720 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.28.247.160.1|65|5115377 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.9.128.0|65|159 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.160.64.0|65|186018 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.160.64.1|65|6724 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.164.0.0|65|297 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.164.0.1|65|57 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.164.64.0|65|418344 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.164.64.1|65|16491 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.167.160.0|65|1255712 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.167.160.1|65|2377586 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.205.32.0|65|4 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.205.32.1|65|1819 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.212.160.0|65|86546 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.212.160.1|65|2663209 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.230.64.0|65|96678 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.230.64.1|65|41129 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.230.96.0|65|2909277 +1.3.6.1.4.1.14179.2.2.6.1.6.8.123.135.29.230.96.1|65|180624 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.95.147.160.0|65|12855 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.95.147.160.1|65|8238 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.97.136.32.0|65|80 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.102.87.0.0|65|622628 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.102.87.0.1|65|2144017 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.102.134.96.0|65|1841164 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.102.134.96.1|65|137921 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.103.175.0.0|65|684 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.103.175.0.1|65|121 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.225.4.192.0|65|80243 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.225.4.192.1|65|1771 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.225.42.224.0|65|39858 +1.3.6.1.4.1.14179.2.2.6.1.6.24.249.53.225.42.224.1|65|1646254 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.92.0.0|65|948672 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.92.0.1|65|4248818 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.101.224.0|65|938901 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.101.224.1|65|8228507 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.103.64.0|65|4502740 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.103.64.1|65|39024720 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.109.224.0|65|214046 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.109.224.1|65|4185637 +1.3.6.1.4.1.14179.2.2.6.1.6.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.22.96.0|65|49419 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.22.96.1|65|3861147 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.31.224.0|65|5700531 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.31.224.1|65|5959210 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.56.69.96.0|65|2006162 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.56.69.96.1|65|6875479 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.119.32.0|65|329 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.119.32.1|65|1635 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.131.224.0|65|982480 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.131.224.1|65|134041287 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.47.192.0|65|252749 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.47.192.1|65|4130431 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.128.0|65|333 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.128.1|65|12628 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.192.0|65|1100 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.192.1|65|2127 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.69.128.160.0|65|24876 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.69.128.160.1|65|99401 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.197.128.0|65|73713 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.197.128.1|65|270995 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.0.0|65|58438 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.0.1|65|39512 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.96.0|65|65674 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.96.1|65|42247 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.76.139.32.0|65|14995 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.76.139.32.1|65|125953 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.77.225.160.0|65|1171636 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.77.225.160.1|65|4248208 +1.3.6.1.4.1.14179.2.2.6.1.6.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.6.101.160.0|65|2804607 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.6.101.160.1|65|12985049 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.6.111.192.0|65|118720301 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.6.111.192.1|65|784824230 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.7.225.128.0|65|37434 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.7.225.128.1|65|8093755 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.8.101.0.0|65|145930 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.8.101.0.1|65|617499 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.8.178.160.0|65|191324 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.8.178.160.1|65|1230462 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.9.132.128.0|65|2121341 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.9.132.128.1|65|666963 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.15.230.128.0|65|12938792 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.15.230.128.1|65|7208809 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.184.54.32.0|65|8243420 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.184.54.32.1|65|9119968 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.184.116.64.0|65|10655592 +1.3.6.1.4.1.14179.2.2.6.1.6.88.139.28.184.116.64.1|65|14458410 +1.3.6.1.4.1.14179.2.2.6.1.6.112.105.90.156.95.64.0|65|3 +1.3.6.1.4.1.14179.2.2.6.1.6.112.105.90.156.95.64.1|65|2379 +1.3.6.1.4.1.14179.2.2.6.1.6.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.180.222.49.102.89.160.0|65|92304060 +1.3.6.1.4.1.14179.2.2.6.1.6.180.222.49.102.89.160.1|65|206709747 +1.3.6.1.4.1.14179.2.2.6.1.6.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.6.244.219.230.228.7.192.0|65|2745138 +1.3.6.1.4.1.14179.2.2.6.1.6.244.219.230.228.7.192.1|65|3569460 +1.3.6.1.4.1.14179.2.2.6.1.6.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.69.209.213.189.0.0|65|361266 +1.3.6.1.4.1.14179.2.2.6.1.7.8.69.209.213.189.0.1|65|3096601 +1.3.6.1.4.1.14179.2.2.6.1.7.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.92.0.0|65|271438 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.92.0.1|65|954563 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.101.224.0|65|120744 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.101.224.1|65|1283994 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.103.64.0|65|2147315 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.103.64.1|65|3847811 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.109.224.0|65|84812 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.109.224.1|65|1162899 +1.3.6.1.4.1.14179.2.2.6.1.7.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.22.96.0|65|27739 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.22.96.1|65|613655 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.31.224.0|65|1388815 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.31.224.1|65|1853232 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.56.69.96.0|65|731194 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.56.69.96.1|65|2003056 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.119.32.0|65|134 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.119.32.1|65|746 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.131.224.0|65|448249 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.131.224.1|65|30362390 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.47.192.0|65|108689 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.47.192.1|65|776220 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.128.0|65|266 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.128.1|65|10381 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.192.0|65|810 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.192.1|65|869 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.69.128.160.0|65|10104 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.69.128.160.1|65|79353 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.197.128.0|65|40186 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.197.128.1|65|186892 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.0.0|65|26626 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.0.1|65|19638 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.96.0|65|27790 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.96.1|65|16618 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.76.139.32.0|65|7775 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.76.139.32.1|65|83051 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.77.225.160.0|65|590712 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.77.225.160.1|65|297765 +1.3.6.1.4.1.14179.2.2.6.1.7.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.112.105.90.156.95.64.0|65|1 +1.3.6.1.4.1.14179.2.2.6.1.7.112.105.90.156.95.64.1|65|1807 +1.3.6.1.4.1.14179.2.2.6.1.7.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.180.222.49.102.89.160.0|65|37309270 +1.3.6.1.4.1.14179.2.2.6.1.7.180.222.49.102.89.160.1|65|36593014 +1.3.6.1.4.1.14179.2.2.6.1.7.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.7.244.219.230.228.7.192.0|65|591584 +1.3.6.1.4.1.14179.2.2.6.1.7.244.219.230.228.7.192.1|65|841773 +1.3.6.1.4.1.14179.2.2.6.1.7.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.8.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.9.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.8.69.209.213.189.0.0|65|409770 +1.3.6.1.4.1.14179.2.2.6.1.10.8.69.209.213.189.0.1|65|142948 +1.3.6.1.4.1.14179.2.2.6.1.10.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.30.64.0|65|6477 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.30.64.1|65|798 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.170.96.0|65|1340536 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.170.96.1|65|975080 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.247.160.0|65|213857 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.28.247.160.1|65|140818 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.9.128.0|65|46 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.160.64.0|65|8641 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.160.64.1|65|1268 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.164.0.0|65|159 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.164.0.1|65|33 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.164.64.0|65|11773 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.164.64.1|65|523 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.167.160.0|65|32150 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.167.160.1|65|35593 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.205.32.0|65|18 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.205.32.1|65|97 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.212.160.0|65|11801 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.212.160.1|65|24736 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.230.64.0|65|5469 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.230.64.1|65|3643 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.230.96.0|65|124076 +1.3.6.1.4.1.14179.2.2.6.1.10.8.123.135.29.230.96.1|65|10829 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.95.147.160.0|65|673 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.95.147.160.1|65|285 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.97.136.32.0|65|58 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.97.136.32.1|65|2 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.102.87.0.0|65|24322 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.102.87.0.1|65|49068 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.102.134.96.0|65|6090 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.102.134.96.1|65|976 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.103.175.0.0|65|319 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.103.175.0.1|65|29 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.225.4.192.0|65|5207 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.225.4.192.1|65|336 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.225.42.224.0|65|4446 +1.3.6.1.4.1.14179.2.2.6.1.10.24.249.53.225.42.224.1|65|5326 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.92.0.0|65|91853 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.92.0.1|65|145096 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.101.224.0|65|106159 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.101.224.1|65|1203017 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.103.64.0|65|141363 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.103.64.1|65|586339 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.109.224.0|65|29089 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.109.224.1|65|59978 +1.3.6.1.4.1.14179.2.2.6.1.10.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.22.96.0|65|8975 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.22.96.1|65|84560 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.31.224.0|65|1094892 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.31.224.1|65|254634 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.56.69.96.0|65|177396 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.56.69.96.1|65|323344 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.119.32.0|65|98 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.119.32.1|65|179 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.131.224.0|65|240405 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.131.224.1|65|1226415 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.47.192.0|65|32730 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.47.192.1|65|98121 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.128.0|65|21 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.128.1|65|473 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.192.0|65|330 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.192.1|65|225 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.69.128.160.0|65|1431 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.69.128.160.1|65|3849 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.197.128.0|65|8170 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.197.128.1|65|30448 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.0.0|65|3696 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.0.1|65|3228 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.96.0|65|9064 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.96.1|65|7451 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.76.139.32.0|65|1504 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.76.139.32.1|65|12210 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.77.225.160.0|65|38201 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.77.225.160.1|65|94023 +1.3.6.1.4.1.14179.2.2.6.1.10.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.6.101.160.0|65|136914 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.6.101.160.1|65|1449869 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.6.111.192.0|65|867370 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.6.111.192.1|65|3707128 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.7.225.128.0|65|4101 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.7.225.128.1|65|52290 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.8.101.0.0|65|5761 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.8.101.0.1|65|15190 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.8.178.160.0|65|4788 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.8.178.160.1|65|24995 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.9.132.128.0|65|80243 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.9.132.128.1|65|22937 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.15.230.128.0|65|545743 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.15.230.128.1|65|419576 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.184.54.32.0|65|225604 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.184.54.32.1|65|55495 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.184.116.64.0|65|393437 +1.3.6.1.4.1.14179.2.2.6.1.10.88.139.28.184.116.64.1|65|438890 +1.3.6.1.4.1.14179.2.2.6.1.10.112.105.90.156.95.64.0|65|4 +1.3.6.1.4.1.14179.2.2.6.1.10.112.105.90.156.95.64.1|65|163 +1.3.6.1.4.1.14179.2.2.6.1.10.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.180.222.49.102.89.160.0|65|1595478 +1.3.6.1.4.1.14179.2.2.6.1.10.180.222.49.102.89.160.1|65|2553081 +1.3.6.1.4.1.14179.2.2.6.1.10.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.10.244.219.230.228.7.192.0|65|286882 +1.3.6.1.4.1.14179.2.2.6.1.10.244.219.230.228.7.192.1|65|73717 +1.3.6.1.4.1.14179.2.2.6.1.10.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.153.160.0|65|11901916 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.153.160.1|65|6268853 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.154.224.0|65|56115196 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.154.224.1|65|2963176 +1.3.6.1.4.1.14179.2.2.6.1.11.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.0.223.29.42.246.64.0|65|38797322 +1.3.6.1.4.1.14179.2.2.6.1.11.0.223.29.42.246.64.1|65|400287 +1.3.6.1.4.1.14179.2.2.6.1.11.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.8.69.209.213.189.0.0|65|124608847 +1.3.6.1.4.1.14179.2.2.6.1.11.8.69.209.213.189.0.1|65|10269279 +1.3.6.1.4.1.14179.2.2.6.1.11.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.30.64.0|65|84028675 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.30.64.1|65|95446603 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.170.96.0|65|633598326 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.170.96.1|65|8245249 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.247.160.0|65|62393640 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.28.247.160.1|65|34579253 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.9.128.0|65|81728773 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.9.128.1|65|83877520 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.160.64.0|65|83383370 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.160.64.1|65|90880967 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.164.0.0|65|76705809 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.164.0.1|65|378436029 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.164.64.0|65|93081544 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.164.64.1|65|105206208 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.167.160.0|65|221800652 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.167.160.1|65|14817834 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.205.32.0|65|296274823 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.205.32.1|65|144634 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.212.160.0|65|235443544 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.212.160.1|65|246375298 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.230.64.0|65|103071140 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.230.64.1|65|13120555 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.230.96.0|65|58347790 +1.3.6.1.4.1.14179.2.2.6.1.11.8.123.135.29.230.96.1|65|34891800 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.95.147.160.0|65|91028939 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.95.147.160.1|65|161246 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.97.136.32.0|65|30344184 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.97.136.32.1|65|325444 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.102.87.0.0|65|238254140 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.102.87.0.1|65|21228137 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.102.134.96.0|65|2451675 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.102.134.96.1|65|70265 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.103.175.0.0|65|180933291 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.103.175.0.1|65|27877370 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.225.4.192.0|65|146431301 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.225.4.192.1|65|3150283 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.225.42.224.0|65|108332099 +1.3.6.1.4.1.14179.2.2.6.1.11.24.249.53.225.42.224.1|65|557181 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.173.249.0.0|65|45583543 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.173.249.0.1|65|2742534 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.174.126.128.0|65|77655992 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.174.126.128.1|65|6508704 +1.3.6.1.4.1.14179.2.2.6.1.11.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.92.0.0|65|1412749354 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.92.0.1|65|8365038 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.101.224.0|65|944788638 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.101.224.1|65|23144055 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.103.64.0|65|121035435 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.103.64.1|65|35653462 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.109.224.0|65|135573242 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.109.224.1|65|6221881 +1.3.6.1.4.1.14179.2.2.6.1.11.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.22.96.0|65|92758054 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.22.96.1|65|1351729 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.31.224.0|65|1186804905 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.31.224.1|65|343303307 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.56.69.96.0|65|1219581665 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.56.69.96.1|65|8762650 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.119.32.0|65|244698815 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.119.32.1|65|705645 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.131.224.0|65|1979289550 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.131.224.1|65|315064847 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.47.192.0|65|882677779 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.47.192.1|65|49885801 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.128.0|65|8846693 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.128.1|65|93786 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.192.0|65|45649311 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.192.1|65|1061986 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.69.128.160.0|65|36642722 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.69.128.160.1|65|5383400 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.197.128.0|65|96725467 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.197.128.1|65|10303231 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.0.0|65|58636663 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.0.1|65|2022538 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.96.0|65|151197879 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.96.1|65|159010 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.76.139.32.0|65|19703833 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.76.139.32.1|65|555326 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.77.225.160.0|65|100255491 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.77.225.160.1|65|4359927 +1.3.6.1.4.1.14179.2.2.6.1.11.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.6.101.160.0|65|1607266724 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.6.101.160.1|65|830285969 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.6.111.192.0|65|812888583 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.6.111.192.1|65|3168849869 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.7.225.128.0|65|29650588 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.7.225.128.1|65|11908014 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.8.101.0.0|65|138077104 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.8.101.0.1|65|4245755 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.8.178.160.0|65|146442073 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.8.178.160.1|65|56447188 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.9.132.128.0|65|25028056 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.9.132.128.1|65|181741354 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.15.230.128.0|65|2813220243 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.15.230.128.1|65|2285705776 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.184.54.32.0|65|3345326867 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.184.54.32.1|65|2422299894 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.184.116.64.0|65|3165096897 +1.3.6.1.4.1.14179.2.2.6.1.11.88.139.28.184.116.64.1|65|2284710267 +1.3.6.1.4.1.14179.2.2.6.1.11.112.105.90.156.95.64.0|65|7176925 +1.3.6.1.4.1.14179.2.2.6.1.11.112.105.90.156.95.64.1|65|19505 +1.3.6.1.4.1.14179.2.2.6.1.11.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.180.222.49.102.89.160.0|65|330559779 +1.3.6.1.4.1.14179.2.2.6.1.11.180.222.49.102.89.160.1|65|787997470 +1.3.6.1.4.1.14179.2.2.6.1.11.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.11.244.219.230.228.7.192.0|65|1094129659 +1.3.6.1.4.1.14179.2.2.6.1.11.244.219.230.228.7.192.1|65|29687361 +1.3.6.1.4.1.14179.2.2.6.1.11.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.153.160.0|65|12920208 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.153.160.1|65|232463640 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.154.224.0|65|14024898 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.154.224.1|65|204672636 +1.3.6.1.4.1.14179.2.2.6.1.12.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.0.223.29.42.246.64.0|65|4185281 +1.3.6.1.4.1.14179.2.2.6.1.12.0.223.29.42.246.64.1|65|40160565 +1.3.6.1.4.1.14179.2.2.6.1.12.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.8.69.209.213.189.0.0|65|3170569 +1.3.6.1.4.1.14179.2.2.6.1.12.8.69.209.213.189.0.1|65|35074780 +1.3.6.1.4.1.14179.2.2.6.1.12.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.30.64.0|65|193476 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.30.64.1|65|5618 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.170.96.0|65|407822869 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.170.96.1|65|254627100 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.247.160.0|65|17458988 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.28.247.160.1|65|6287939 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.9.128.0|65|178 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.9.128.1|65|464 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.160.64.0|65|411247 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.160.64.1|65|7419 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.164.0.0|65|413 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.164.0.1|65|138 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.164.64.0|65|740813 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.164.64.1|65|10925 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.167.160.0|65|1243778 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.167.160.1|65|4789615 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.205.32.0|65|28 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.205.32.1|65|191 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.212.160.0|65|73755 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.212.160.1|65|6088611 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.230.64.0|65|240076 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.230.64.1|65|42031 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.230.96.0|65|2713181 +1.3.6.1.4.1.14179.2.2.6.1.12.8.123.135.29.230.96.1|65|307054 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.95.147.160.0|65|11697 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.95.147.160.1|65|5989 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.97.136.32.0|65|114 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.97.136.32.1|65|25 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.102.87.0.0|65|334175 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.102.87.0.1|65|3772144 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.102.134.96.0|65|3122226 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.102.134.96.1|65|327690 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.103.175.0.0|65|1076 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.103.175.0.1|65|319 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.225.4.192.0|65|208594 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.225.4.192.1|65|2466 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.225.42.224.0|65|34425 +1.3.6.1.4.1.14179.2.2.6.1.12.24.249.53.225.42.224.1|65|3992443 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.173.249.0.0|65|6813565 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.173.249.0.1|65|223029885 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.174.126.128.0|65|12147937 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.174.126.128.1|65|106556134 +1.3.6.1.4.1.14179.2.2.6.1.12.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.92.0.0|65|920877 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.92.0.1|65|32497107 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.101.224.0|65|3653214 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.101.224.1|65|65267945 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.103.64.0|65|11895801 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.103.64.1|65|297905848 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.109.224.0|65|530145 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.109.224.1|65|14593715 +1.3.6.1.4.1.14179.2.2.6.1.12.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.22.96.0|65|98581 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.22.96.1|65|17956077 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.31.224.0|65|16559815 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.31.224.1|65|22236942 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.56.69.96.0|65|5446995 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.56.69.96.1|65|16775152 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.119.32.0|65|467 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.119.32.1|65|1433 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.131.224.0|65|3431455 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.131.224.1|65|387023986 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.47.192.0|65|534135 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.47.192.1|65|40046412 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.128.0|65|183 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.128.1|65|5937 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.192.0|65|2306 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.192.1|65|2422 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.69.128.160.0|65|84651 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.69.128.160.1|65|46490 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.197.128.0|65|226268 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.197.128.1|65|230968 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.0.0|65|220757 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.0.1|65|48302 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.96.0|65|121266 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.96.1|65|73008 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.76.139.32.0|65|65681 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.76.139.32.1|65|147846 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.77.225.160.0|65|1666338 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.77.225.160.1|65|9922869 +1.3.6.1.4.1.14179.2.2.6.1.12.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.6.101.160.0|65|2482045 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.6.101.160.1|65|23811591 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.6.111.192.0|65|216889906 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.6.111.192.1|65|1366131145 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.7.225.128.0|65|83078 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.7.225.128.1|65|19688752 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.8.101.0.0|65|209759 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.8.101.0.1|65|1408191 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.8.178.160.0|65|215818 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.8.178.160.1|65|2066098 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.9.132.128.0|65|3585984 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.9.132.128.1|65|1258307 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.15.230.128.0|65|3789851 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.15.230.128.1|65|13335328 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.184.54.32.0|65|8846291 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.184.54.32.1|65|14169892 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.184.116.64.0|65|4925969 +1.3.6.1.4.1.14179.2.2.6.1.12.88.139.28.184.116.64.1|65|37462116 +1.3.6.1.4.1.14179.2.2.6.1.12.112.105.90.156.95.64.0|65|29 +1.3.6.1.4.1.14179.2.2.6.1.12.112.105.90.156.95.64.1|65|983 +1.3.6.1.4.1.14179.2.2.6.1.12.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.180.222.49.102.89.160.0|65|390989882 +1.3.6.1.4.1.14179.2.2.6.1.12.180.222.49.102.89.160.1|65|703590143 +1.3.6.1.4.1.14179.2.2.6.1.12.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.12.244.219.230.228.7.192.0|65|8571464 +1.3.6.1.4.1.14179.2.2.6.1.12.244.219.230.228.7.192.1|65|27289615 +1.3.6.1.4.1.14179.2.2.6.1.12.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.69.209.213.189.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.69.209.213.189.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.30.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.30.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.170.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.170.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.247.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.28.247.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.9.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.9.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.160.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.160.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.164.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.164.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.164.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.164.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.167.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.167.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.205.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.212.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.212.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.230.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.230.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.230.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.8.123.135.29.230.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.95.147.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.95.147.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.97.136.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.97.136.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.102.87.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.102.87.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.102.134.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.102.134.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.103.175.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.103.175.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.225.4.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.225.4.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.225.42.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.24.249.53.225.42.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.92.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.92.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.101.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.101.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.103.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.103.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.109.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.109.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.22.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.22.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.31.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.31.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.56.69.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.56.69.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.119.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.119.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.131.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.131.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.47.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.47.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.69.128.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.69.128.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.197.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.197.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.96.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.96.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.76.139.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.76.139.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.77.225.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.77.225.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.6.101.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.6.101.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.6.111.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.6.111.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.7.225.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.7.225.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.8.101.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.8.101.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.8.178.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.8.178.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.9.132.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.9.132.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.15.230.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.15.230.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.184.54.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.184.54.32.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.184.116.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.88.139.28.184.116.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.112.105.90.156.95.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.112.105.90.156.95.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.180.222.49.102.89.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.180.222.49.102.89.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.244.219.230.228.7.192.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.244.219.230.228.7.192.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.13.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.153.160.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.153.160.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.153.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.154.224.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.154.224.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.60.16.104.154.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.223.29.42.246.64.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.223.29.42.246.64.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.0.223.29.42.246.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.8.69.209.213.189.0.0|65|1379066 +1.3.6.1.4.1.14179.2.2.6.1.33.8.69.209.213.189.0.1|65|13668470 +1.3.6.1.4.1.14179.2.2.6.1.33.8.69.209.213.189.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.30.64.0|65|41836 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.30.64.1|65|1958 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.170.96.0|65|100454066 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.170.96.1|65|7865563 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.247.160.0|65|4893246 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.28.247.160.1|65|3822055 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.9.128.0|65|28 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.9.128.1|65|6 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.160.64.0|65|64825 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.160.64.1|65|2632 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.164.0.0|65|46 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.164.0.1|65|9 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.164.64.0|65|389153 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.164.64.1|65|4421 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.167.160.0|65|713620 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.167.160.1|65|615652 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.205.32.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.205.32.1|65|229 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.212.160.0|65|35800 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.212.160.1|65|752087 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.230.64.0|65|48248 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.230.64.1|65|21217 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.230.96.0|65|1201322 +1.3.6.1.4.1.14179.2.2.6.1.33.8.123.135.29.230.96.1|65|58106 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.95.147.160.0|65|7436 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.95.147.160.1|65|1055 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.97.136.32.0|65|22 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.97.136.32.1|65|5 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.102.87.0.0|65|292781 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.102.87.0.1|65|540084 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.102.134.96.0|65|310933 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.102.134.96.1|65|11757 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.103.175.0.0|65|120 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.103.175.0.1|65|49 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.225.4.192.0|65|27490 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.225.4.192.1|65|737 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.225.42.224.0|65|9655 +1.3.6.1.4.1.14179.2.2.6.1.33.24.249.53.225.42.224.1|65|327074 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.173.249.0.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.173.249.0.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.173.249.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.174.126.128.0|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.174.126.128.1|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.28.209.224.174.126.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.92.0.0|65|2148456 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.92.0.1|65|5940040 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.92.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.101.224.0|65|1780189 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.101.224.1|65|9820989 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.101.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.103.64.0|65|4444323 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.103.64.1|65|63713703 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.103.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.109.224.0|65|262173 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.109.224.1|65|7149120 +1.3.6.1.4.1.14179.2.2.6.1.33.36.54.218.80.109.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.22.96.0|65|52077 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.22.96.1|65|4760334 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.22.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.31.224.0|65|7426552 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.31.224.1|65|10798022 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.52.31.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.56.69.96.0|65|1852034 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.56.69.96.1|65|6541207 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.56.69.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.119.32.0|65|508 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.119.32.1|65|2278 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.119.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.131.224.0|65|983148 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.131.224.1|65|99456238 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.59.131.224.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.47.192.0|65|311845 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.47.192.1|65|7147809 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.47.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.128.0|65|165 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.128.1|65|8712 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.192.0|65|651 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.192.1|65|3469 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.61.56.192.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.69.128.160.0|65|34867 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.69.128.160.1|65|61995 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.69.128.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.197.128.0|65|63410 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.197.128.1|65|237951 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.197.128.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.0.0|65|59837 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.0.1|65|57161 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.0.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.96.0|65|84711 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.96.1|65|66318 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.73.198.96.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.76.139.32.0|65|6277 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.76.139.32.1|65|126513 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.76.139.32.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.77.225.160.0|65|571020 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.77.225.160.1|65|3288448 +1.3.6.1.4.1.14179.2.2.6.1.33.40.172.158.77.225.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.6.101.160.0|65|796534 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.6.101.160.1|65|4593264 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.6.111.192.0|65|48547650 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.6.111.192.1|65|77660011 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.7.225.128.0|65|4358 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.7.225.128.1|65|721852 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.8.101.0.0|65|59244 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.8.101.0.1|65|21729 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.8.178.160.0|65|36726 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.8.178.160.1|65|228551 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.9.132.128.0|65|741826 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.9.132.128.1|65|31429 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.15.230.128.0|65|3735981 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.15.230.128.1|65|1295720 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.184.54.32.0|65|3927355 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.184.54.32.1|65|307579 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.184.116.64.0|65|2659079 +1.3.6.1.4.1.14179.2.2.6.1.33.88.139.28.184.116.64.1|65|1790694 +1.3.6.1.4.1.14179.2.2.6.1.33.112.105.90.156.95.64.0|65|5 +1.3.6.1.4.1.14179.2.2.6.1.33.112.105.90.156.95.64.1|65|2802 +1.3.6.1.4.1.14179.2.2.6.1.33.112.105.90.156.95.64.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.180.222.49.102.89.160.0|65|89839920 +1.3.6.1.4.1.14179.2.2.6.1.33.180.222.49.102.89.160.1|65|133812658 +1.3.6.1.4.1.14179.2.2.6.1.33.180.222.49.102.89.160.2|65|0 +1.3.6.1.4.1.14179.2.2.6.1.33.244.219.230.228.7.192.0|65|3238716 +1.3.6.1.4.1.14179.2.2.6.1.33.244.219.230.228.7.192.1|65|6110609 +1.3.6.1.4.1.14179.2.2.6.1.33.244.219.230.228.7.192.2|65|0 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.153.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.153.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.154.224.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.154.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.0.223.29.42.246.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.0.223.29.42.246.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.8.69.209.213.189.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.69.209.213.189.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.30.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.30.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.170.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.170.96.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.247.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.28.247.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.9.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.9.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.160.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.160.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.164.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.164.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.164.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.164.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.167.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.167.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.205.32.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.205.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.212.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.212.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.230.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.230.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.230.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.8.123.135.29.230.96.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.95.147.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.95.147.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.97.136.32.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.97.136.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.102.87.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.102.87.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.102.134.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.102.134.96.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.103.175.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.103.175.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.225.4.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.225.4.192.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.225.42.224.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.24.249.53.225.42.224.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.173.249.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.173.249.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.174.126.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.1.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.92.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.92.0.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.101.224.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.101.224.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.103.64.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.103.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.109.224.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.22.96.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.22.96.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.31.224.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.31.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.56.69.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.56.69.96.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.119.32.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.119.32.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.131.224.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.131.224.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.47.192.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.47.192.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.128.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.192.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.69.128.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.69.128.160.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.197.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.197.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.0.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.96.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.76.139.32.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.76.139.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.77.225.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.77.225.160.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.6.101.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.6.101.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.6.111.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.6.111.192.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.7.225.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.7.225.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.8.101.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.8.101.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.8.178.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.8.178.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.9.132.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.9.132.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.15.230.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.15.230.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.184.54.32.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.184.54.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.184.116.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.88.139.28.184.116.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.112.105.90.156.95.64.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.112.105.90.156.95.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.180.222.49.102.89.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.1.180.222.49.102.89.160.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.1.244.219.230.228.7.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.1.244.219.230.228.7.192.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.1.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.153.160.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.153.160.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.154.224.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.154.224.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.0.223.29.42.246.64.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.0.223.29.42.246.64.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.8.69.209.213.189.0.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.69.209.213.189.0.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.30.64.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.30.64.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.170.96.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.170.96.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.247.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.28.247.160.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.9.128.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.9.128.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.160.64.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.160.64.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.164.0.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.164.0.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.164.64.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.164.64.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.167.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.167.160.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.205.32.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.205.32.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.212.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.212.160.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.230.64.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.230.64.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.230.96.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.8.123.135.29.230.96.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.95.147.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.95.147.160.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.97.136.32.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.97.136.32.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.102.87.0.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.102.87.0.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.102.134.96.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.102.134.96.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.103.175.0.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.103.175.0.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.225.4.192.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.225.4.192.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.225.42.224.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.24.249.53.225.42.224.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.173.249.0.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.173.249.0.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.174.126.128.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.174.126.128.1|2|10 +1.3.6.1.4.1.14179.2.2.8.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.92.0.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.92.0.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.101.224.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.101.224.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.103.64.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.103.64.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.109.224.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.109.224.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.22.96.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.22.96.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.31.224.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.31.224.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.56.69.96.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.56.69.96.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.119.32.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.119.32.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.131.224.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.131.224.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.47.192.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.47.192.1|2|19 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.128.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.128.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.192.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.192.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.69.128.160.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.69.128.160.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.197.128.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.197.128.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.0.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.0.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.96.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.96.1|2|19 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.76.139.32.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.76.139.32.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.77.225.160.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.77.225.160.1|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.6.101.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.6.101.160.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.6.111.192.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.6.111.192.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.7.225.128.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.7.225.128.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.8.101.0.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.8.101.0.1|2|19 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.8.178.160.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.8.178.160.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.9.132.128.0|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.9.132.128.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.15.230.128.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.15.230.128.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.184.54.32.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.184.54.32.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.184.116.64.0|2|18 +1.3.6.1.4.1.14179.2.2.8.1.2.88.139.28.184.116.64.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.112.105.90.156.95.64.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.112.105.90.156.95.64.1|2|23 +1.3.6.1.4.1.14179.2.2.8.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.180.222.49.102.89.160.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.2.180.222.49.102.89.160.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.2.244.219.230.228.7.192.0|2|22 +1.3.6.1.4.1.14179.2.2.8.1.2.244.219.230.228.7.192.1|2|19 +1.3.6.1.4.1.14179.2.2.8.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.153.160.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.153.160.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.154.224.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.154.224.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.3.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.0.223.29.42.246.64.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.0.223.29.42.246.64.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.3.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.8.69.209.213.189.0.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.69.209.213.189.0.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.3.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.30.64.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.30.64.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.170.96.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.170.96.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.247.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.28.247.160.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.9.128.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.9.128.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.160.64.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.160.64.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.164.0.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.164.0.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.164.64.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.164.64.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.167.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.167.160.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.205.32.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.205.32.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.212.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.212.160.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.230.64.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.230.64.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.230.96.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.8.123.135.29.230.96.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.95.147.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.95.147.160.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.97.136.32.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.97.136.32.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.102.87.0.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.102.87.0.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.102.134.96.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.102.134.96.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.103.175.0.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.103.175.0.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.225.4.192.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.225.4.192.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.225.42.224.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.24.249.53.225.42.224.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.173.249.0.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.173.249.0.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.174.126.128.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.174.126.128.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.3.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.92.0.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.92.0.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.101.224.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.101.224.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.103.64.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.103.64.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.109.224.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.109.224.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.22.96.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.22.96.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.31.224.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.31.224.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.56.69.96.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.56.69.96.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.119.32.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.119.32.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.131.224.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.131.224.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.47.192.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.47.192.1|2|16 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.128.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.128.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.192.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.192.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.69.128.160.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.69.128.160.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.197.128.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.197.128.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.0.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.0.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.96.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.96.1|2|16 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.76.139.32.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.76.139.32.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.77.225.160.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.77.225.160.1|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.6.101.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.6.101.160.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.6.111.192.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.6.111.192.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.7.225.128.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.7.225.128.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.8.101.0.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.8.101.0.1|2|16 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.8.178.160.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.8.178.160.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.9.132.128.0|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.9.132.128.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.15.230.128.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.15.230.128.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.184.54.32.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.184.54.32.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.184.116.64.0|2|15 +1.3.6.1.4.1.14179.2.2.8.1.3.88.139.28.184.116.64.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.112.105.90.156.95.64.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.112.105.90.156.95.64.1|2|20 +1.3.6.1.4.1.14179.2.2.8.1.3.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.180.222.49.102.89.160.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.3.180.222.49.102.89.160.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.3.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.3.244.219.230.228.7.192.0|2|19 +1.3.6.1.4.1.14179.2.2.8.1.3.244.219.230.228.7.192.1|2|16 +1.3.6.1.4.1.14179.2.2.8.1.3.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.153.160.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.153.160.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.154.224.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.154.224.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.4.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.0.223.29.42.246.64.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.0.223.29.42.246.64.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.4.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.8.69.209.213.189.0.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.69.209.213.189.0.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.4.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.30.64.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.30.64.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.170.96.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.170.96.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.247.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.28.247.160.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.9.128.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.9.128.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.160.64.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.160.64.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.164.0.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.164.0.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.164.64.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.164.64.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.167.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.167.160.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.205.32.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.205.32.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.212.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.212.160.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.230.64.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.230.64.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.230.96.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.8.123.135.29.230.96.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.95.147.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.95.147.160.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.97.136.32.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.97.136.32.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.102.87.0.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.102.87.0.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.102.134.96.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.102.134.96.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.103.175.0.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.103.175.0.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.225.4.192.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.225.4.192.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.225.42.224.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.24.249.53.225.42.224.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.173.249.0.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.173.249.0.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.174.126.128.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.4.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.92.0.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.92.0.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.101.224.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.101.224.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.103.64.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.103.64.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.109.224.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.109.224.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.22.96.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.22.96.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.31.224.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.31.224.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.56.69.96.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.56.69.96.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.119.32.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.119.32.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.131.224.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.131.224.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.47.192.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.47.192.1|2|13 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.128.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.128.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.192.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.192.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.69.128.160.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.69.128.160.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.197.128.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.197.128.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.0.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.0.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.96.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.96.1|2|13 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.76.139.32.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.76.139.32.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.77.225.160.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.77.225.160.1|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.6.101.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.6.101.160.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.6.111.192.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.6.111.192.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.7.225.128.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.7.225.128.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.8.101.0.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.8.101.0.1|2|13 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.8.178.160.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.8.178.160.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.9.132.128.0|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.9.132.128.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.15.230.128.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.15.230.128.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.184.54.32.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.184.54.32.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.184.116.64.0|2|12 +1.3.6.1.4.1.14179.2.2.8.1.4.88.139.28.184.116.64.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.112.105.90.156.95.64.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.112.105.90.156.95.64.1|2|17 +1.3.6.1.4.1.14179.2.2.8.1.4.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.180.222.49.102.89.160.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.4.180.222.49.102.89.160.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.4.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.4.244.219.230.228.7.192.0|2|16 +1.3.6.1.4.1.14179.2.2.8.1.4.244.219.230.228.7.192.1|2|13 +1.3.6.1.4.1.14179.2.2.8.1.4.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.153.160.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.153.160.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.154.224.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.154.224.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.5.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.0.223.29.42.246.64.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.0.223.29.42.246.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.5.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.8.69.209.213.189.0.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.69.209.213.189.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.5.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.30.64.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.30.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.170.96.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.170.96.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.247.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.28.247.160.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.9.128.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.9.128.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.160.64.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.160.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.164.0.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.164.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.164.64.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.164.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.167.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.167.160.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.205.32.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.205.32.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.212.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.212.160.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.230.64.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.230.64.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.230.96.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.8.123.135.29.230.96.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.95.147.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.95.147.160.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.97.136.32.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.97.136.32.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.102.87.0.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.102.87.0.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.102.134.96.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.102.134.96.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.103.175.0.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.103.175.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.225.4.192.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.225.4.192.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.225.42.224.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.24.249.53.225.42.224.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.173.249.0.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.173.249.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.174.126.128.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.5.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.92.0.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.92.0.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.101.224.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.101.224.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.103.64.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.103.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.109.224.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.22.96.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.22.96.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.31.224.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.31.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.56.69.96.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.56.69.96.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.119.32.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.119.32.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.131.224.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.131.224.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.47.192.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.47.192.1|2|10 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.128.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.128.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.192.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.192.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.69.128.160.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.69.128.160.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.197.128.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.197.128.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.0.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.0.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.96.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.96.1|2|10 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.76.139.32.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.76.139.32.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.77.225.160.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.77.225.160.1|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.6.101.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.6.101.160.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.6.111.192.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.6.111.192.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.7.225.128.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.7.225.128.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.8.101.0.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.8.101.0.1|2|10 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.8.178.160.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.8.178.160.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.9.132.128.0|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.9.132.128.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.15.230.128.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.15.230.128.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.184.54.32.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.184.54.32.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.184.116.64.0|2|9 +1.3.6.1.4.1.14179.2.2.8.1.5.88.139.28.184.116.64.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.112.105.90.156.95.64.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.112.105.90.156.95.64.1|2|14 +1.3.6.1.4.1.14179.2.2.8.1.5.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.180.222.49.102.89.160.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.5.180.222.49.102.89.160.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.5.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.5.244.219.230.228.7.192.0|2|13 +1.3.6.1.4.1.14179.2.2.8.1.5.244.219.230.228.7.192.1|2|10 +1.3.6.1.4.1.14179.2.2.8.1.5.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.153.160.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.153.160.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.154.224.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.154.224.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.0.223.29.42.246.64.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.0.223.29.42.246.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.8.69.209.213.189.0.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.69.209.213.189.0.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.30.64.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.30.64.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.170.96.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.170.96.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.247.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.28.247.160.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.9.128.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.9.128.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.160.64.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.160.64.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.164.0.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.164.0.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.164.64.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.164.64.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.167.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.167.160.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.205.32.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.205.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.212.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.212.160.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.230.64.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.230.64.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.230.96.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.8.123.135.29.230.96.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.95.147.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.95.147.160.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.97.136.32.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.102.87.0.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.102.87.0.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.102.134.96.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.102.134.96.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.103.175.0.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.103.175.0.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.225.4.192.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.225.4.192.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.225.42.224.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.24.249.53.225.42.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.173.249.0.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.173.249.0.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.174.126.128.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.174.126.128.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.92.0.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.92.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.101.224.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.101.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.103.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.103.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.109.224.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.109.224.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.22.96.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.22.96.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.31.224.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.56.69.96.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.56.69.96.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.119.32.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.119.32.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.131.224.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.131.224.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.47.192.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.47.192.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.128.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.128.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.192.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.192.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.69.128.160.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.197.128.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.197.128.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.0.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.0.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.96.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.96.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.76.139.32.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.76.139.32.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.77.225.160.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.77.225.160.1|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.6.101.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.6.101.160.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.6.111.192.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.6.111.192.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.7.225.128.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.7.225.128.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.8.101.0.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.8.101.0.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.8.178.160.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.8.178.160.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.9.132.128.0|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.9.132.128.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.15.230.128.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.15.230.128.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.184.54.32.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.184.116.64.0|2|6 +1.3.6.1.4.1.14179.2.2.8.1.6.88.139.28.184.116.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.112.105.90.156.95.64.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.112.105.90.156.95.64.1|2|11 +1.3.6.1.4.1.14179.2.2.8.1.6.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.180.222.49.102.89.160.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.6.180.222.49.102.89.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.6.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.6.244.219.230.228.7.192.0|2|10 +1.3.6.1.4.1.14179.2.2.8.1.6.244.219.230.228.7.192.1|2|7 +1.3.6.1.4.1.14179.2.2.8.1.6.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.153.160.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.153.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.154.224.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.0.223.29.42.246.64.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.69.209.213.189.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.30.64.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.170.96.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.28.247.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.9.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.160.64.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.164.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.164.64.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.167.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.167.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.205.32.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.205.32.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.212.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.230.64.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.230.64.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.230.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.8.123.135.29.230.96.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.95.147.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.97.136.32.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.102.87.0.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.102.87.0.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.102.134.96.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.103.175.0.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.225.4.192.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.225.42.224.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.24.249.53.225.42.224.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.173.249.0.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.174.126.128.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.92.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.92.0.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.101.224.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.103.64.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.109.224.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.109.224.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.22.96.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.56.69.96.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.119.32.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.131.224.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.131.224.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.47.192.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.69.128.160.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.197.128.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.197.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.0.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.0.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.96.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.96.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.76.139.32.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.77.225.160.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.77.225.160.1|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.6.101.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.6.111.192.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.7.225.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.7.225.128.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.8.101.0.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.8.178.160.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.8.178.160.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.9.132.128.0|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.15.230.128.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.184.54.32.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.184.116.64.0|2|3 +1.3.6.1.4.1.14179.2.2.8.1.7.88.139.28.184.116.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.112.105.90.156.95.64.1|2|8 +1.3.6.1.4.1.14179.2.2.8.1.7.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.7.180.222.49.102.89.160.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.7.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.7.244.219.230.228.7.192.0|2|7 +1.3.6.1.4.1.14179.2.2.8.1.7.244.219.230.228.7.192.1|2|4 +1.3.6.1.4.1.14179.2.2.8.1.7.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.153.160.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.153.160.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.154.224.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.154.224.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.0.223.29.42.246.64.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.0.223.29.42.246.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.69.209.213.189.0.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.69.209.213.189.0.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.30.64.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.170.96.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.28.247.160.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.9.128.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.9.128.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.160.64.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.164.0.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.164.0.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.164.64.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.164.64.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.167.160.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.205.32.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.212.160.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.230.96.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.8.123.135.29.230.96.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.95.147.160.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.97.136.32.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.102.87.0.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.102.134.96.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.103.175.0.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.225.4.192.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.173.249.0.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.173.249.0.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.174.126.128.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.174.126.128.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.92.0.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.103.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.31.224.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.56.69.96.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.119.32.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.131.224.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.131.224.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.128.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.192.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.197.128.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.197.128.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.0.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.96.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.76.139.32.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.77.225.160.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.6.101.160.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.6.111.192.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.6.111.192.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.7.225.128.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.7.225.128.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.8.178.160.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.9.132.128.0|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.9.132.128.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.15.230.128.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.184.54.32.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.88.139.28.184.116.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.112.105.90.156.95.64.1|2|5 +1.3.6.1.4.1.14179.2.2.8.1.8.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.180.222.49.102.89.160.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.8.244.219.230.228.7.192.0|2|4 +1.3.6.1.4.1.14179.2.2.8.1.8.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.8.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.153.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.8.1.28.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.8.69.209.213.189.0.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.69.209.213.189.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.30.64.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.30.64.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.170.96.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.170.96.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.247.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.9.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.9.128.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.160.64.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.160.64.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.164.0.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.164.0.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.164.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.164.64.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.167.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.167.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.205.32.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.205.32.1|2|-1 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.212.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.212.160.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.230.64.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.230.64.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.230.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.8.123.135.29.230.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.95.147.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.95.147.160.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.97.136.32.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.97.136.32.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.102.87.0.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.102.87.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.102.134.96.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.102.134.96.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.103.175.0.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.103.175.0.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.225.4.192.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.225.4.192.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.225.42.224.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.24.249.53.225.42.224.1|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.173.249.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.174.126.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.92.0.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.92.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.101.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.103.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.109.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.109.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.22.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.31.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.56.69.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.119.32.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.119.32.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.131.224.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.131.224.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.47.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.69.128.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.69.128.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.197.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.197.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.0.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.96.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.76.139.32.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.77.225.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.6.101.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.6.101.160.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.6.111.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.6.111.192.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.7.225.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.8.101.0.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.8.101.0.1|2|-2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.8.178.160.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.8.178.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.9.132.128.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.15.230.128.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.15.230.128.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.184.54.32.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.184.54.32.1|2|-4 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.184.116.64.0|2|-3 +1.3.6.1.4.1.14179.2.2.8.1.28.88.139.28.184.116.64.1|2|-1 +1.3.6.1.4.1.14179.2.2.8.1.28.112.105.90.156.95.64.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.112.105.90.156.95.64.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.180.222.49.102.89.160.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.8.1.28.244.219.230.228.7.192.0|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.244.219.230.228.7.192.1|2|2 +1.3.6.1.4.1.14179.2.2.8.1.28.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.9.1.2.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.153.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.153.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.153.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.154.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.154.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.60.16.104.154.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.0.223.29.42.246.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.223.29.42.246.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.0.223.29.42.246.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.8.69.209.213.189.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.69.209.213.189.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.69.209.213.189.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.30.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.30.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.170.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.170.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.247.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.28.247.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.9.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.9.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.160.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.160.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.164.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.164.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.164.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.164.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.167.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.167.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.205.32.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.205.32.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.212.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.212.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.230.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.230.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.230.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.8.123.135.29.230.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.95.147.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.95.147.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.97.136.32.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.97.136.32.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.102.87.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.102.87.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.102.134.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.102.134.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.103.175.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.103.175.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.225.4.192.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.225.4.192.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.225.42.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.24.249.53.225.42.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.173.249.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.173.249.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.173.249.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.174.126.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.174.126.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.28.209.224.174.126.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.92.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.92.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.92.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.101.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.101.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.101.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.103.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.103.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.103.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.109.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.109.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.36.54.218.80.109.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.22.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.22.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.22.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.31.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.31.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.52.31.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.56.69.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.56.69.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.56.69.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.119.32.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.119.32.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.119.32.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.131.224.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.131.224.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.59.131.224.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.47.192.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.47.192.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.47.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.192.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.192.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.61.56.192.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.69.128.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.69.128.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.69.128.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.197.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.197.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.197.128.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.0.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.96.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.96.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.73.198.96.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.76.139.32.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.76.139.32.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.76.139.32.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.77.225.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.77.225.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.40.172.158.77.225.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.6.101.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.6.101.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.6.111.192.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.6.111.192.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.7.225.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.7.225.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.8.101.0.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.8.101.0.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.8.178.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.8.178.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.9.132.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.9.132.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.15.230.128.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.15.230.128.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.184.54.32.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.184.54.32.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.184.116.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.88.139.28.184.116.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.112.105.90.156.95.64.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.112.105.90.156.95.64.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.112.105.90.156.95.64.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.180.222.49.102.89.160.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.180.222.49.102.89.160.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.180.222.49.102.89.160.2|2|0 +1.3.6.1.4.1.14179.2.2.9.1.23.244.219.230.228.7.192.0|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.244.219.230.228.7.192.1|2|1157693440 +1.3.6.1.4.1.14179.2.2.9.1.23.244.219.230.228.7.192.2|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.60.16.104.153.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.60.16.104.154.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.247.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.28.247.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.230.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.230.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.101.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.103.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.52.22.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.56.69.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.40.172.158.77.225.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.6.101.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.6.111.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.6.111.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.7.225.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.8.178.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.9.132.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.9.132.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.180.222.49.102.89.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.1.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.0.223.29.42.246.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.230.64.0|2|2 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.103.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.103.64.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.109.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.47.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.2.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.2.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.0.60.16.104.153.160.0|2|33 +1.3.6.1.4.1.14179.2.2.13.1.3.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.0.60.16.104.154.224.0|2|35 +1.3.6.1.4.1.14179.2.2.13.1.3.0.60.16.104.154.224.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.0.223.29.42.246.64.0|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.0.223.29.42.246.64.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.3.8.69.209.213.189.0.0|2|32 +1.3.6.1.4.1.14179.2.2.13.1.3.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.30.64.0|2|9 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.30.64.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.170.96.0|2|44 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.247.160.0|2|34 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.28.247.160.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.9.128.0|2|14 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.9.128.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.160.64.0|2|49 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.160.64.1|2|9 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.164.0.0|2|14 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.164.0.1|2|6 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.164.64.0|2|15 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.164.64.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.167.160.0|2|52 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.167.160.1|2|9 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.205.32.0|2|47 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.212.160.0|2|31 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.212.160.1|2|11 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.230.64.0|2|31 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.230.64.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.230.96.0|2|26 +1.3.6.1.4.1.14179.2.2.13.1.3.8.123.135.29.230.96.1|2|9 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.97.136.32.0|2|8 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.97.136.32.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.102.87.0.0|2|34 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.102.87.0.1|2|7 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.103.175.0.0|2|53 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.103.175.0.1|2|6 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.225.4.192.0|2|42 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.225.4.192.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.225.42.224.0|2|42 +1.3.6.1.4.1.14179.2.2.13.1.3.24.249.53.225.42.224.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.28.209.224.173.249.0.0|2|35 +1.3.6.1.4.1.14179.2.2.13.1.3.28.209.224.173.249.0.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.28.209.224.174.126.128.0|2|13 +1.3.6.1.4.1.14179.2.2.13.1.3.28.209.224.174.126.128.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.92.0.0|2|12 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.101.224.0|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.101.224.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.103.64.0|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.103.64.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.2.13.1.3.36.54.218.80.109.224.1|2|8 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.52.22.96.0|2|12 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.52.31.224.0|2|13 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.52.31.224.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.56.69.96.0|2|29 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.56.69.96.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.59.119.32.0|2|23 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.59.131.224.0|2|26 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.59.131.224.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.47.192.0|2|13 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.47.192.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.56.128.0|2|7 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.56.128.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.56.192.0|2|19 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.61.56.192.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.69.128.160.0|2|9 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.69.128.160.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.197.128.0|2|49 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.198.0.0|2|38 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.198.0.1|2|4 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.198.96.0|2|35 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.73.198.96.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.76.139.32.0|2|13 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.76.139.32.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.77.225.160.0|2|24 +1.3.6.1.4.1.14179.2.2.13.1.3.40.172.158.77.225.160.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.6.101.160.0|2|38 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.6.101.160.1|2|8 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.6.111.192.0|2|13 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.6.111.192.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.7.225.128.0|2|16 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.7.225.128.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.8.101.0.0|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.8.101.0.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.8.178.160.0|2|26 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.8.178.160.1|2|7 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.9.132.128.0|2|17 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.9.132.128.1|2|7 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.15.230.128.0|2|20 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.15.230.128.1|2|6 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.184.54.32.0|2|21 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.184.54.32.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.184.116.64.0|2|19 +1.3.6.1.4.1.14179.2.2.13.1.3.88.139.28.184.116.64.1|2|5 +1.3.6.1.4.1.14179.2.2.13.1.3.112.105.90.156.95.64.0|2|6 +1.3.6.1.4.1.14179.2.2.13.1.3.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.3.180.222.49.102.89.160.0|2|17 +1.3.6.1.4.1.14179.2.2.13.1.3.180.222.49.102.89.160.1|2|19 +1.3.6.1.4.1.14179.2.2.13.1.3.244.219.230.228.7.192.0|2|37 +1.3.6.1.4.1.14179.2.2.13.1.3.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.0.60.16.104.153.160.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.4.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.0.223.29.42.246.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.69.209.213.189.0.0|2|3 +1.3.6.1.4.1.14179.2.2.13.1.4.8.69.209.213.189.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.30.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.30.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.170.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.170.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.247.160.0|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.28.247.160.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.9.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.9.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.160.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.160.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.164.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.164.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.164.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.164.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.167.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.167.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.205.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.205.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.212.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.212.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.230.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.8.123.135.29.230.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.95.147.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.95.147.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.97.136.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.97.136.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.102.87.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.102.87.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.102.134.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.102.134.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.103.175.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.103.175.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.225.4.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.225.4.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.225.42.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.24.249.53.225.42.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.28.209.224.173.249.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.28.209.224.174.126.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.28.209.224.174.126.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.92.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.92.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.101.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.101.224.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.103.64.1|2|3 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.36.54.218.80.109.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.52.22.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.52.31.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.52.31.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.59.119.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.59.119.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.59.131.224.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.47.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.56.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.56.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.61.56.192.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.69.128.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.69.128.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.197.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.198.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.73.198.96.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.76.139.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.76.139.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.6.101.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.7.225.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.8.101.0.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.8.101.0.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.8.178.160.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.9.132.128.0|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.15.230.128.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.15.230.128.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.184.54.32.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.184.54.32.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.184.116.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.88.139.28.184.116.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.112.105.90.156.95.64.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.112.105.90.156.95.64.1|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.180.222.49.102.89.160.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.180.222.49.102.89.160.1|2|2 +1.3.6.1.4.1.14179.2.2.13.1.4.244.219.230.228.7.192.0|2|0 +1.3.6.1.4.1.14179.2.2.13.1.4.244.219.230.228.7.192.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.153.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.0.60.16.104.154.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.0.223.29.42.246.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.69.209.213.189.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.30.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.170.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.28.247.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.9.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.160.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.164.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.167.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.205.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.212.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.8.123.135.29.230.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.95.147.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.97.136.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.87.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.102.134.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.103.175.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.4.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.24.249.53.225.42.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.173.249.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.28.209.224.174.126.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.92.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.101.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.103.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.36.54.218.80.109.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.22.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.52.31.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.56.69.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.119.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.59.131.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.47.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.61.56.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.69.128.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.197.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.73.198.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.76.139.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.40.172.158.77.225.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.101.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.6.111.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.7.225.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.101.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.8.178.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.9.132.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.15.230.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.54.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.88.139.28.184.116.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.112.105.90.156.95.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.180.222.49.102.89.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.14.1.1.244.219.230.228.7.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.4|2|-52 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.5|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.6|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.0.11|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.161|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.153.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.1|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.5|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.6|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.0.11|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.44|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.112|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.60.16.104.154.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.9|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.0.223.29.42.246.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.1|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.5|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.6|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.7|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.9|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.10|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.11|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.36|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.44|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.100|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.112|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.149|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.161|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.8.69.209.213.189.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.1|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.11|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.30.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.11|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.170.96.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.9|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.28.247.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.9.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.1|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.160.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.164.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.6|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.11|2|-53 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.167.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.205.32.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.212.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.1|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.8.123.135.29.230.96.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.95.147.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.97.136.32.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.6|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.11|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.87.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.6|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.102.134.96.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.103.175.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.11|2|-51 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.4.192.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.24.249.53.225.42.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.1|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.2|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.5|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.6|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.7|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.8|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.9|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.10|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.0.11|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.100|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.161|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.173.249.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.4|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.6|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.7|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.8|2|-65 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.0.11|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.36|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.14.1.2.28.209.224.174.126.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.1|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.6|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.11|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.36|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.52|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.132|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.161|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.92.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.1|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.6|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.7|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.11|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.36|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.52|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.112|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.132|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.149|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.161|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.101.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.2|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.6|2|-66 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.7|2|-66 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.9|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.11|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.103.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.5|2|-67 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.6|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.7|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.10|2|-55 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.11|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.36|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.44|2|-67 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.100|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.112|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.149|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.161|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.36.54.218.80.109.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.1|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.2|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.6|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.10|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.11|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.36|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.44|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.56|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.100|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.112|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.149|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.161|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.22.96.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.1|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.5|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.6|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.7|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.10|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.11|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.36|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.52|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.64|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.100|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.112|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.161|2|-74 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.52.31.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.1|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.5|2|-74 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.6|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.7|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.9|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.10|2|-90 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.11|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.36|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.52|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.112|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.132|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.149|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.161|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.56.69.96.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.1|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.4|2|-89 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.6|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.10|2|-95 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.11|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.36|2|-63 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.48|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.52|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.132|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.149|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.161|2|-67 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.119.32.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.1|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.5|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.6|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.7|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.8|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.10|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.11|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.36|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.52|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.64|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.100|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.112|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.132|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.149|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.161|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.59.131.224.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.1|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.4|2|-94 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.5|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.6|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.7|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.8|2|-94 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.11|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.36|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.52|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.100|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.112|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.132|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.161|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.47.192.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.4|2|-93 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.6|2|-71 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.11|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.36|2|-74 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.112|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.132|2|-68 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.1|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.4|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.6|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.11|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.36|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.44|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.52|2|-64 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.112|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.136|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.149|2|-62 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.161|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.61.56.192.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.1|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.2|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.4|2|-93 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.5|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.6|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.7|2|-90 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.10|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.11|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.36|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.44|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.56|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.100|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.112|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.149|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.69.128.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.1|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.2|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.6|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.7|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.10|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.11|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.36|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.44|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.56|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.112|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.132|2|-65 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.149|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.197.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.1|2|-67 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.2|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.6|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.7|2|-60 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.11|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.36|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.44|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.56|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.112|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.149|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.161|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.1|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.6|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.7|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.10|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.11|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.36|2|-78 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.44|2|-89 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.48|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.100|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.112|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.116|2|-85 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.161|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.73.198.96.1.165|2|-84 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.4|2|-64 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.6|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.7|2|-65 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.9|2|-94 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.11|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.36|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.40|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.44|2|-74 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.56|2|-63 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.112|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.140|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.161|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.76.139.32.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.1|2|-69 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.2|2|-74 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.5|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.6|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.7|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.11|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.44|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.100|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.112|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.132|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.149|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.161|2|-80 +1.3.6.1.4.1.14179.2.2.14.1.2.40.172.158.77.225.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.6|2|-62 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.101.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.6.111.192.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.7.225.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.1|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.6|2|-65 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.101.0.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.8.178.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.9.132.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.15.230.128.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.6|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.54.32.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.1|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.6|2|-61 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.11|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.88.139.28.184.116.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.1|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.6|2|-76 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.10|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.11|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.48|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.52|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.132|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.149|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.112.105.90.156.95.64.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.1|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.3|2|-91 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.5|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.6|2|-90 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.7|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.8|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.9|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.36|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.44|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.52|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.112|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.132|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.149|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.161|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.180.222.49.102.89.160.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.1|2|-75 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.2|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.3|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.4|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.5|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.6|2|-77 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.7|2|-88 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.8|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.9|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.10|2|-89 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.11|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.36|2|-81 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.40|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.44|2|-70 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.48|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.52|2|-72 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.56|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.60|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.64|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.100|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.104|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.108|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.112|2|-83 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.116|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.132|2|-82 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.136|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.140|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.149|2|-79 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.153|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.157|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.161|2|-73 +1.3.6.1.4.1.14179.2.2.14.1.2.244.219.230.228.7.192.1.165|2|-128 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.1|2|19 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.6|2|32 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.9|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.153.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.1|2|49 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.5|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.6|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.9|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.0.11|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.44|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.112|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.60.16.104.154.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.9|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.0.223.29.42.246.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.1|2|17 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.5|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.6|2|32 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.7|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.9|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.10|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.11|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.36|2|10 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.100|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.112|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.132|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.149|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.161|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.8.69.209.213.189.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.11|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.30.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.11|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.170.96.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.1|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.28.247.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.9.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.1|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.160.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.164.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.6|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.167.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.205.32.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.212.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.1|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.8.123.135.29.230.96.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.95.147.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.97.136.32.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.6|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.87.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.102.134.96.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.103.175.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.4.192.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.24.249.53.225.42.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.1|2|38 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.5|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.6|2|10 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.7|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.9|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.0.11|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.100|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.173.249.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.1|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.6|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.8|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.0.11|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.28.209.224.174.126.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.1|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.6|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.52|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.92.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.1|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.6|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.11|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.36|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.52|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.112|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.161|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.101.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.9|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.11|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.103.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.1|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.5|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.6|2|23 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.7|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.11|2|13 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.36|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.100|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.112|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.132|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.161|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.36.54.218.80.109.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.1|2|40 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.2|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.6|2|23 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.7|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.11|2|12 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.44|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.56|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.112|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.149|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.22.96.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.1|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.5|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.6|2|25 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.7|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.10|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.11|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.36|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.52|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.64|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.112|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.161|2|10 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.52.31.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.1|2|17 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.4|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.5|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.6|2|31 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.7|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.10|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.52|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.112|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.161|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.56.69.96.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.1|2|19 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.2|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.10|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.11|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.48|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.52|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.119.32.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.1|2|37 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.5|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.6|2|15 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.7|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.10|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.11|2|17 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.36|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.52|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.64|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.112|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.149|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.161|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.59.131.224.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.1|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.4|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.6|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.8|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.10|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.11|2|15 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.52|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.112|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.161|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.47.192.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.1|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.6|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.11|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.36|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.112|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.1|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.4|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.6|2|27 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.11|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.36|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.44|2|12 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.52|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.112|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.132|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.136|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.161|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.61.56.192.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.1|2|17 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.2|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.4|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.6|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.7|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.11|2|22 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.36|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.56|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.112|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.69.128.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.1|2|38 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.5|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.6|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.7|2|15 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.9|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.11|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.36|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.44|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.56|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.112|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.149|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.197.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.1|2|30 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.2|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.6|2|29 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.11|2|13 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.44|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.56|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.112|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.149|2|10 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.1|2|30 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.4|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.6|2|14 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.7|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.10|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.11|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.36|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.48|2|12 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.100|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.112|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.116|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.132|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.161|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.73.198.96.1.165|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.1|2|13 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.6|2|11 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.7|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.9|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.11|2|31 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.36|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.40|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.56|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.112|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.140|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.161|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.76.139.32.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.1|2|57 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.2|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.5|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.6|2|19 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.7|2|8 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.11|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.44|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.100|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.112|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.149|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.161|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.40.172.158.77.225.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.101.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.6.111.192.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.7.225.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.1|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.101.0.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.8.178.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.9.132.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.15.230.128.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.54.32.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.6|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.11|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.88.139.28.184.116.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.6|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.10|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.11|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.48|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.52|2|2 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.132|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.149|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.112.105.90.156.95.64.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.3|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.9|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.10|2|20 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.11|2|7 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.36|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.44|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.52|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.112|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.132|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.149|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.161|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.180.222.49.102.89.160.1.165|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.1|2|38 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.5|2|9 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.6|2|33 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.7|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.8|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.9|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.10|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.11|2|6 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.12|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.0.13|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.36|2|4 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.40|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.44|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.48|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.52|2|1 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.56|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.60|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.64|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.100|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.104|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.108|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.112|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.116|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.132|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.136|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.140|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.149|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.153|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.157|2|0 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.161|2|3 +1.3.6.1.4.1.14179.2.2.14.1.22.244.219.230.228.7.192.1.165|2|0 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.153.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.0.60.16.104.154.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.0.223.29.42.246.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.69.209.213.189.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.30.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.170.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.28.247.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.9.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.160.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.164.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.167.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.205.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.212.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.8.123.135.29.230.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.95.147.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.97.136.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.87.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.102.134.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.103.175.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.4.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.24.249.53.225.42.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.173.249.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.28.209.224.174.126.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.92.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.101.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.103.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.36.54.218.80.109.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.22.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.52.31.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.56.69.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.119.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.59.131.224.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.47.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.61.56.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.69.128.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.197.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.73.198.96.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.76.139.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.40.172.158.77.225.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.101.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.6.111.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.7.225.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.101.0.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.8.178.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.9.132.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.15.230.128.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.54.32.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.88.139.28.184.116.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.112.105.90.156.95.64.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.180.222.49.102.89.160.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.10|2|10 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.11|2|11 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.12|2|12 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.0.13|2|13 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.36|2|36 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.40|2|40 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.44|2|44 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.48|2|48 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.52|2|52 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.56|2|56 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.60|2|60 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.64|2|64 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.100|2|100 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.104|2|104 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.108|2|108 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.112|2|112 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.116|2|116 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.132|2|132 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.136|2|136 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.140|2|140 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.149|2|149 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.153|2|153 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.157|2|157 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.161|2|161 +1.3.6.1.4.1.14179.2.2.15.1.1.244.219.230.228.7.192.1.165|2|165 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.1|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.2|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.3|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.4|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.5|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.6|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.7|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.8|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.9|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.10|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.0.11|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.44|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.48|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.52|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.56|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.60|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.64|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.100|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.104|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.108|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.112|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.116|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.132|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.136|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.140|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.149|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.153|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.157|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.161|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.153.160.1.165|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.1|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.2|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.3|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.4|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.5|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.6|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.7|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.8|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.9|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.10|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.0.11|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.36|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.40|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.44|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.48|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.64|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.108|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.149|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.153|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.161|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.60.16.104.154.224.1.165|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.1|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.2|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.3|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.4|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.5|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.6|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.7|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.8|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.9|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.10|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.0.11|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.36|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.40|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.44|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.48|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.52|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.56|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.132|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.136|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.140|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.149|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.153|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.157|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.161|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.0.223.29.42.246.64.1.165|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.1|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.2|2|-75 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.3|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.4|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.5|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.6|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.7|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.8|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.11|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.36|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.40|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.44|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.48|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.56|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.60|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.64|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.100|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.8.69.209.213.189.0.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.2|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.3|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.8|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.10|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.149|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.30.64.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.1|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.4|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.7|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.8|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.9|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.40|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.112|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.149|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.153|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.170.96.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.3|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.5|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.6|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.7|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.8|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.36|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.40|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.48|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.56|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.60|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.64|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.100|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.108|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.161|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.28.247.160.1.165|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.7|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.64|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.108|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.116|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.9.128.1.165|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.1|2|-80 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.2|2|-81 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.4|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.10|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.11|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.56|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.160.64.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.2|2|-81 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.3|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.8|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.0.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.1|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.6|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.164.64.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.7|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.8|2|-76 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.48|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.167.160.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.2|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.5|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.48|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.64|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.205.32.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.1|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.2|2|-72 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.3|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.4|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.7|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.10|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.44|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.48|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.108|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.140|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.161|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.212.160.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.1|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.2|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.3|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.5|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.11|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.36|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.44|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.136|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.140|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.161|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.64.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.1|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.5|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.10|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.36|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.52|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.100|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.8.123.135.29.230.96.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.2|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.4|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.8|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.11|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.36|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.44|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.48|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.56|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.95.147.160.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.1|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.3|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.97.136.32.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.3|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.4|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.44|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.48|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.52|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.56|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.60|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.104|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.116|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.140|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.153|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.87.0.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.1|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.2|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.3|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.5|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.7|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.8|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.161|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.102.134.96.1.165|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.4|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.6|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.11|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.36|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.153|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.103.175.0.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.2|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.3|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.7|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.8|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.64|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.4.192.1.165|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.48|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.60|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.64|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.104|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.116|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.140|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.153|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.161|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.24.249.53.225.42.224.1.165|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.1|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.2|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.3|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.4|2|-102 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.5|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.6|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.7|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.8|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.9|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.10|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.0.11|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.36|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.44|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.48|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.104|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.108|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.112|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.132|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.136|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.140|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.149|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.153|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.157|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.161|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.173.249.0.1.165|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.1|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.2|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.3|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.4|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.5|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.6|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.7|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.8|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.9|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.10|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.0.11|2|-100 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.52|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.56|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.60|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.64|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.100|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.104|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.108|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.112|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.116|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.132|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.136|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.140|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.149|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.153|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.157|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.161|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.28.209.224.174.126.128.1.165|2|-101 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.1|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.2|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.3|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.4|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.5|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.6|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.8|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.9|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.10|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.11|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.40|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.44|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.48|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.52|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.56|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.60|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.136|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.157|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.92.0.1.165|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.1|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.2|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.3|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.4|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.5|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.7|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.8|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.10|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.11|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.36|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.40|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.44|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.52|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.60|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.104|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.112|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.116|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.132|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.136|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.149|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.101.224.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.1|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.2|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.3|2|-80 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.4|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.5|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.6|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.40|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.44|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.48|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.52|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.60|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.64|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.108|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.132|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.136|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.149|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.103.64.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.3|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.4|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.5|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.6|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.7|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.8|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.9|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.10|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.11|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.40|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.44|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.56|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.60|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.64|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.104|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.136|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.149|2|-76 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.36.54.218.80.109.224.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.1|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.2|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.3|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.4|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.6|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.8|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.9|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.44|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.48|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.22.96.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.4|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.5|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.7|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.8|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.10|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.112|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.116|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.132|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.140|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.52.31.224.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.1|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.2|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.5|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.7|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.8|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.9|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.40|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.112|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.161|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.56.69.96.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.1|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.2|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.4|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.5|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.7|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.9|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.36|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.44|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.119.32.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.1|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.3|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.4|2|-81 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.5|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.8|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.9|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.10|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.36|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.157|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.59.131.224.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.1|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.3|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.4|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.5|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.6|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.8|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.9|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.10|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.40|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.48|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.100|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.149|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.47.192.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.1|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.3|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.4|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.5|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.6|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.9|2|-80 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.10|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.48|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.157|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.161|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.128.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.1|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.2|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.3|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.4|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.5|2|-80 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.6|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.9|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.44|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.48|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.61.56.192.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.1|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.3|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.4|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.5|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.6|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.8|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.9|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.40|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.44|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.48|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.112|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.69.128.160.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.1|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.2|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.4|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.5|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.6|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.8|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.9|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.10|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.11|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.48|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.52|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.64|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.136|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.197.128.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.1|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.2|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.3|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.4|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.5|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.6|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.9|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.153|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.161|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.0.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.1|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.4|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.5|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.6|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.9|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.44|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.56|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.132|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.157|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.161|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.73.198.96.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.1|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.2|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.3|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.4|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.5|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.8|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.9|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.52|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.64|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.132|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.136|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.157|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.161|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.76.139.32.1.165|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.1|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.2|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.4|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.5|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.6|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.7|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.9|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.10|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.104|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.132|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.153|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.157|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.40.172.158.77.225.160.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.3|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.9|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.108|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.112|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.101.160.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.1|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.3|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.5|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.44|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.112|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.116|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.136|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.140|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.153|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.157|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.6.111.192.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.5|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.8|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.104|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.7.225.128.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.2|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.4|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.5|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.6|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.116|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.101.0.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.2|2|-83 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.6|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.7|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.9|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.10|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.52|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.104|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.116|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.132|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.136|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.153|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.157|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.161|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.8.178.160.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.1|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.2|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.4|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.52|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.64|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.100|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.108|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.132|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.149|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.9.132.128.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.3|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.4|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.5|2|-82 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.6|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.7|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.10|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.11|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.36|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.56|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.60|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.108|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.112|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.132|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.140|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.149|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.157|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.15.230.128.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.1|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.2|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.4|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.5|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.6|2|-85 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.7|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.8|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.11|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.40|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.44|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.48|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.56|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.108|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.136|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.140|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.153|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.161|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.54.32.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.1|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.2|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.3|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.5|2|-84 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.6|2|-88 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.7|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.8|2|-86 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.9|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.10|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.11|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.36|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.40|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.44|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.48|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.52|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.56|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.60|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.64|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.100|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.104|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.108|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.112|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.116|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.132|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.136|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.140|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.149|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.153|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.157|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.161|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.88.139.28.184.116.64.1.165|2|-90 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.1|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.3|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.4|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.5|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.6|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.8|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.9|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.10|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.11|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.44|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.48|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.60|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.64|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.100|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.108|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.149|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.153|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.161|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.112.105.90.156.95.64.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.1|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.2|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.3|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.4|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.5|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.6|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.7|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.8|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.9|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.10|2|-91 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.11|2|-93 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.36|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.40|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.44|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.48|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.52|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.56|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.60|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.64|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.112|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.116|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.140|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.149|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.157|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.161|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.180.222.49.102.89.160.1.165|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.1|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.2|2|-89 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.3|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.4|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.5|2|-92 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.6|2|-87 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.7|2|-94 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.8|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.9|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.10|2|-95 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.11|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.12|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.0.13|2|-128 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.36|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.40|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.44|2|-99 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.48|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.52|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.56|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.60|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.64|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.100|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.104|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.108|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.112|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.116|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.132|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.136|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.140|2|-98 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.149|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.153|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.157|2|-96 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.161|2|-97 +1.3.6.1.4.1.14179.2.2.15.1.21.244.219.230.228.7.192.1.165|2|-96 +1.3.6.1.4.1.14179.2.2.16.1.1.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.1.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.0.60.16.104.153.160.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.0.60.16.104.154.224.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.69.209.213.189.0.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.28.209.224.173.249.0.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.56.69.96.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.59.131.224.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.56.192.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.197.128.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.198.0.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.198.96.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.77.225.160.0|2|0 +1.3.6.1.4.1.14179.2.2.16.1.2.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.2.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.3.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.60.16.104.153.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.60.16.104.153.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.60.16.104.154.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.69.209.213.189.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.69.209.213.189.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.30.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.9.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.164.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.164.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.164.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.167.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.205.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.230.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.8.123.135.29.230.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.97.136.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.97.136.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.102.87.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.28.209.224.173.249.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.28.209.224.174.126.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.28.209.224.174.126.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.101.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.109.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.36.54.218.80.109.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.52.22.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.52.22.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.52.31.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.52.31.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.56.69.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.56.69.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.59.119.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.59.131.224.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.47.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.47.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.56.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.56.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.56.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.61.56.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.69.128.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.197.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.198.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.198.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.73.198.96.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.76.139.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.76.139.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.77.225.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.40.172.158.77.225.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.6.111.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.7.225.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.7.225.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.8.101.0.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.8.178.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.9.132.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.112.105.90.156.95.64.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.112.105.90.156.95.64.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.16.1.24.244.219.230.228.7.192.1|2|1 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.88.139.28.15.230.143|4x|588b1c0fe68f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.153.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.0.60.16.104.154.224.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.0.223.29.42.246.64.0.180.222.49.102.89.160|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.8.69.209.213.189.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.123.135.29.164.79|4x|087b871da44f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.30.64.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.170.96.0.0.223.29.42.246.64|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.170.96.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.170.96.0.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.170.96.0.180.222.49.102.89.160|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.170.96.1.180.222.49.102.89.175|4x|b4de316659af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.8.123.135.29.164.79|4x|087b871da44f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.28.247.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.9.128.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.123.135.29.164.79|4x|087b871da44f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.160.64.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.8.123.135.29.9.143|4x|087b871d098f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.164.64.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.88.139.28.15.230.143|4x|588b1c0fe68f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.167.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.205.32.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.212.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.64.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.8.123.135.29.230.96.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.95.147.160.0.0.223.29.42.246.64|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.95.147.160.1.0.223.29.42.246.79|4x|00df1d2af64f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.8.123.135.29.9.143|4x|087b871d098f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.97.136.32.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.87.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.134.96.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.134.96.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.134.96.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.102.134.96.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.8.123.135.29.9.143|4x|087b871d098f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.103.175.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.4.192.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.24.249.53.225.42.224.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.173.249.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.28.209.224.174.126.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.92.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.101.224.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.0.180.222.49.102.89.160|4x|b4de316659a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.103.64.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.36.54.218.80.109.224.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.22.96.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.88.139.28.15.230.143|4x|588b1c0fe68f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.52.31.224.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.24.249.53.102.134.96|4x|18f935668660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.56.69.96.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.119.32.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.6.111.207|4x|588b1c066fcf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.184.54.47|4x|588b1cb8362f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.59.131.224.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.47.192.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.8.123.135.29.9.143|4x|087b871d098f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.61.56.192.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.69.128.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.29.164.79|4x|087b871da44f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.197.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.28.247.160|4x|087b871cf7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.0.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.112.105.90.156.95.79|4x|70695a9c5f4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.73.198.96.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.123.135.29.164.64|4x|087b871da440 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.24.249.53.225.4.192|4x|18f935e104c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.24.249.53.225.42.224|4x|18f935e12ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.8.123.135.28.30.79|4x|087b871c1e4f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.8.123.135.29.160.79|4x|087b871da04f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.8.123.135.29.230.79|4x|087b871de64f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.24.249.53.225.4.207|4x|18f935e104cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.24.249.53.225.42.239|4x|18f935e12aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.76.139.32.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.28.30.64|4x|087b871c1e40 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.29.160.64|4x|087b871da040 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.29.230.64|4x|087b871de640 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.73.198.0|4x|28ac9e49c600 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.40.172.158.76.139.32|4x|28ac9e4c8b20 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.8.123.135.28.247.175|4x|087b871cf7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.69.128.175|4x|28ac9e4580af +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.73.198.15|4x|28ac9e49c60f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.40.172.158.76.139.47|4x|28ac9e4c8b2f +1.3.6.1.4.1.14179.2.2.17.1.1.40.172.158.77.225.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.6.111.207|4x|588b1c066fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.101.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.6.111.192.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.7.225.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.101.0.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.88.139.28.6.111.192|4x|588b1c066fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.6.111.207|4x|588b1c066fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.9.132.143|4x|588b1c09848f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.8.178.160.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.88.139.28.8.101.0|4x|588b1c086500 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.112.105.90.156.95.64|4x|70695a9c5f40 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.88.139.28.6.111.207|4x|588b1c066fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.88.139.28.8.101.15|4x|588b1c08650f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.9.132.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.69.128.160|4x|28ac9e4580a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.88.139.28.184.54.32|4x|588b1cb83620 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.8.123.135.29.212.175|4x|087b871dd4af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.24.249.53.102.87.15|4x|18f93566570f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.73.197.143|4x|28ac9e49c58f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.88.139.28.184.54.47|4x|588b1cb8362f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.15.230.128.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.88.139.28.184.116.64|4x|588b1cb87440 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.88.139.28.15.230.143|4x|588b1c0fe68f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.88.139.28.184.116.79|4x|588b1cb8744f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.54.32.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.73.197.128|4x|28ac9e49c580 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.88.139.28.6.101.160|4x|588b1c0665a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.88.139.28.15.230.128|4x|588b1c0fe680 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.8.123.135.29.167.175|4x|087b871da7af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.88.139.28.6.101.175|4x|588b1c0665af +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.88.139.28.184.116.64.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.8.123.135.29.9.128|4x|087b871d0980 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.8.123.135.29.164.0|4x|087b871da400 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.8.123.135.29.205.32|4x|087b871dcd20 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.24.249.53.97.136.32|4x|18f935618820 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.24.249.53.103.175.0|4x|18f93567af00 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.61.56.128|4x|28ac9e3d3880 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.0.244.219.230.228.7.192|4x|f4dbe6e407c0 +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.8.123.135.29.164.15|4x|087b871da40f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.8.123.135.29.205.47|4x|087b871dcd2f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.24.249.53.97.136.47|4x|18f93561882f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.24.249.53.103.175.15|4x|18f93567af0f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.40.172.158.59.119.47|4x|28ac9e3b772f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.40.172.158.61.56.143|4x|28ac9e3d388f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.112.105.90.156.95.64.1.244.219.230.228.7.207|4x|f4dbe6e407cf +1.3.6.1.4.1.14179.2.2.17.1.1.180.222.49.102.89.160.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.180.222.49.102.89.160.0.0.223.29.42.246.64|4x|00df1d2af640 +1.3.6.1.4.1.14179.2.2.17.1.1.180.222.49.102.89.160.0.8.123.135.28.170.96|4x|087b871caa60 +1.3.6.1.4.1.14179.2.2.17.1.1.180.222.49.102.89.160.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.180.222.49.102.89.160.0.36.54.218.80.103.64|4x|2436da506740 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.0.60.16.104.153.160|4x|003c106899a0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.0.60.16.104.154.224|4x|003c10689ae0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.8.69.209.213.189.0|4x|0845d1d5bd00 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.8.123.135.29.167.160|4x|087b871da7a0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.8.123.135.29.212.160|4x|087b871dd4a0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.8.123.135.29.230.96|4x|087b871de660 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.24.249.53.102.87.0|4x|18f935665700 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.28.209.224.173.249.0|4x|1cd1e0adf900 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.28.209.224.174.126.128|4x|1cd1e0ae7e80 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.36.54.218.80.92.0|4x|2436da505c00 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.36.54.218.80.101.224|4x|2436da5065e0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.36.54.218.80.109.224|4x|2436da506de0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.52.22.96|4x|28ac9e341660 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.52.31.224|4x|28ac9e341fe0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.56.69.96|4x|28ac9e384560 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.59.119.32|4x|28ac9e3b7720 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.59.131.224|4x|28ac9e3b83e0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.61.47.192|4x|28ac9e3d2fc0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.61.56.192|4x|28ac9e3d38c0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.73.198.96|4x|28ac9e49c660 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.40.172.158.77.225.160|4x|28ac9e4de1a0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.88.139.28.7.225.128|4x|588b1c07e180 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.88.139.28.8.178.160|4x|588b1c08b2a0 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.0.88.139.28.9.132.128|4x|588b1c098480 +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.0.60.16.104.153.175|4x|003c106899af +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.0.60.16.104.154.239|4x|003c10689aef +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.8.69.209.213.189.15|4x|0845d1d5bd0f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.8.123.135.29.230.111|4x|087b871de66f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.28.209.224.173.249.15|4x|1cd1e0adf90f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.28.209.224.174.126.143|4x|1cd1e0ae7e8f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.36.54.218.80.92.15|4x|2436da505c0f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.36.54.218.80.101.239|4x|2436da5065ef +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.36.54.218.80.109.239|4x|2436da506def +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.52.22.111|4x|28ac9e34166f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.52.31.239|4x|28ac9e341fef +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.56.69.111|4x|28ac9e38456f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.59.131.239|4x|28ac9e3b83ef +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.61.47.207|4x|28ac9e3d2fcf +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.61.56.207|4x|28ac9e3d38cf +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.73.198.111|4x|28ac9e49c66f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.40.172.158.77.225.175|4x|28ac9e4de1af +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.88.139.28.7.225.143|4x|588b1c07e18f +1.3.6.1.4.1.14179.2.2.17.1.1.244.219.230.228.7.192.1.88.139.28.8.178.175|4x|588b1c08b2af +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.36.54.218.80.103.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.88.139.28.15.230.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.153.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.60.16.104.154.224.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.0.223.29.42.246.64.0.180.222.49.102.89.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.88.139.28.184.54.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.69.209.213.189.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.123.135.29.164.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.30.64.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.170.96.0.0.223.29.42.246.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.170.96.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.170.96.0.36.54.218.80.103.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.170.96.0.180.222.49.102.89.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.170.96.1.180.222.49.102.89.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.8.123.135.29.164.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.28.247.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.9.128.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.123.135.29.164.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.160.64.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.8.123.135.29.9.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.164.64.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.88.139.28.15.230.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.167.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.205.32.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.212.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.64.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.8.123.135.29.230.96.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.95.147.160.0.0.223.29.42.246.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.95.147.160.1.0.223.29.42.246.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.8.123.135.29.9.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.97.136.32.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.87.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.134.96.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.134.96.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.134.96.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.102.134.96.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.8.123.135.29.9.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.103.175.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.4.192.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.24.249.53.225.42.224.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.36.54.218.80.103.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.88.139.28.6.111.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.88.139.28.184.54.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.173.249.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.36.54.218.80.103.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.28.209.224.174.126.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.92.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.101.224.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.0.180.222.49.102.89.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.103.64.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.88.139.28.184.54.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.36.54.218.80.109.224.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.22.96.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.88.139.28.15.230.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.52.31.224.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.24.249.53.102.134.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.56.69.96.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.119.32.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.88.139.28.6.111.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.6.111.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.184.54.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.59.131.224.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.47.192.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.8.123.135.29.9.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.61.56.192.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.69.128.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.29.164.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.197.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.28.247.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.0.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.112.105.90.156.95.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.73.198.96.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.123.135.29.164.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.24.249.53.225.4.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.24.249.53.225.42.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.8.123.135.28.30.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.8.123.135.29.160.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.8.123.135.29.230.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.24.249.53.225.4.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.24.249.53.225.42.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.76.139.32.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.28.30.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.29.160.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.29.230.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.73.198.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.40.172.158.76.139.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.8.123.135.28.247.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.69.128.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.73.198.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.40.172.158.76.139.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.40.172.158.77.225.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.6.111.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.101.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.6.111.192.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.7.225.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.88.139.28.6.111.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.101.0.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.88.139.28.6.111.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.6.111.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.9.132.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.8.178.160.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.88.139.28.8.101.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.112.105.90.156.95.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.88.139.28.6.111.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.88.139.28.8.101.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.9.132.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.69.128.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.88.139.28.184.54.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.8.123.135.29.212.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.24.249.53.102.87.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.73.197.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.88.139.28.184.54.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.15.230.128.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.88.139.28.184.116.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.88.139.28.15.230.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.88.139.28.184.116.79|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.54.32.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.73.197.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.88.139.28.6.101.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.88.139.28.15.230.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.8.123.135.29.167.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.88.139.28.6.101.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.88.139.28.184.116.64.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.8.123.135.29.9.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.8.123.135.29.164.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.8.123.135.29.205.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.24.249.53.97.136.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.24.249.53.103.175.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.61.56.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.0.244.219.230.228.7.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.8.123.135.29.164.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.8.123.135.29.205.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.24.249.53.97.136.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.24.249.53.103.175.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.40.172.158.59.119.47|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.40.172.158.61.56.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.112.105.90.156.95.64.1.244.219.230.228.7.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.180.222.49.102.89.160.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.180.222.49.102.89.160.0.0.223.29.42.246.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.180.222.49.102.89.160.0.8.123.135.28.170.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.180.222.49.102.89.160.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.180.222.49.102.89.160.0.36.54.218.80.103.64|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.0.60.16.104.153.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.0.60.16.104.154.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.8.69.209.213.189.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.8.123.135.29.167.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.8.123.135.29.212.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.8.123.135.29.230.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.24.249.53.102.87.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.28.209.224.173.249.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.28.209.224.174.126.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.36.54.218.80.92.0|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.36.54.218.80.101.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.36.54.218.80.109.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.52.22.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.52.31.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.56.69.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.59.119.32|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.59.131.224|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.61.47.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.61.56.192|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.73.198.96|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.40.172.158.77.225.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.88.139.28.7.225.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.88.139.28.8.178.160|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.0.88.139.28.9.132.128|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.0.60.16.104.153.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.0.60.16.104.154.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.8.69.209.213.189.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.8.123.135.29.230.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.28.209.224.173.249.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.28.209.224.174.126.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.36.54.218.80.92.15|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.36.54.218.80.101.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.36.54.218.80.109.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.52.22.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.52.31.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.56.69.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.59.131.239|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.61.47.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.61.56.207|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.73.198.111|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.40.172.158.77.225.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.88.139.28.7.225.143|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.2.244.219.230.228.7.192.1.88.139.28.8.178.175|64x|0ab73464 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.0.60.16.104.154.224|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.8.69.209.213.189.0|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.8.123.135.29.167.160|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.8.123.135.29.212.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.8.123.135.29.230.96|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.24.249.53.102.87.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.28.209.224.173.249.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.28.209.224.174.126.128|2|-38 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.36.54.218.80.101.224|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.36.54.218.80.103.64|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.36.54.218.80.109.224|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.52.22.96|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.52.31.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.56.69.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.59.131.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.61.47.192|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.61.56.192|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.69.128.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.73.197.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.73.198.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.40.172.158.77.225.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.88.139.28.8.178.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.88.139.28.15.230.128|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.0.244.219.230.228.7.192|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.0.60.16.104.154.239|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.8.69.209.213.189.15|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.8.123.135.29.167.175|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.8.123.135.29.212.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.8.123.135.29.230.111|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.24.249.53.102.87.15|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.28.209.224.173.249.15|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.28.209.224.174.126.143|2|-40 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.36.54.218.80.109.239|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.52.22.111|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.52.31.239|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.56.69.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.59.131.239|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.61.47.207|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.61.56.207|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.69.128.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.73.197.143|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.73.198.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.40.172.158.77.225.175|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.88.139.28.15.230.143|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.153.160.1.244.219.230.228.7.207|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.0.60.16.104.153.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.69.209.213.189.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.28.30.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.28.247.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.29.160.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.29.167.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.29.230.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.8.123.135.29.230.96|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.28.209.224.173.249.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.28.209.224.174.126.128|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.36.54.218.80.109.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.52.22.96|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.52.31.224|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.59.119.32|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.59.131.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.61.56.128|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.61.56.192|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.69.128.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.73.197.128|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.73.198.0|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.73.198.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.76.139.32|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.40.172.158.77.225.160|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.0.244.219.230.228.7.192|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.0.60.16.104.153.175|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.28.209.224.174.126.143|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.36.54.218.80.109.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.52.22.111|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.52.31.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.61.56.207|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.69.128.175|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.73.197.143|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.73.198.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.0.60.16.104.154.224.1.40.172.158.77.225.175|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.0.223.29.42.246.64.0.180.222.49.102.89.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.0.60.16.104.153.160|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.0.60.16.104.154.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.8.123.135.29.167.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.8.123.135.29.212.160|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.8.123.135.29.230.96|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.24.249.53.102.87.0|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.28.209.224.173.249.0|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.28.209.224.174.126.128|2|-49 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.36.54.218.80.101.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.36.54.218.80.109.224|2|-43 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.52.22.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.52.31.224|2|-42 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.56.69.96|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.59.131.224|2|-44 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.61.47.192|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.61.56.192|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.73.197.128|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.40.172.158.77.225.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.88.139.28.6.101.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.88.139.28.8.178.160|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.88.139.28.15.230.128|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.88.139.28.184.54.32|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.88.139.28.184.116.64|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.0.244.219.230.228.7.192|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.0.60.16.104.153.175|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.8.123.135.29.230.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.28.209.224.173.249.15|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.28.209.224.174.126.143|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.36.54.218.80.101.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.36.54.218.80.109.239|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.52.22.111|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.52.31.239|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.56.69.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.59.131.239|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.61.47.207|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.40.172.158.77.225.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.88.139.28.6.101.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.69.209.213.189.0.1.244.219.230.228.7.207|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.0.60.16.104.153.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.0.60.16.104.154.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.69.209.213.189.0|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.123.135.28.247.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.123.135.29.160.64|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.123.135.29.164.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.123.135.29.167.160|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.8.123.135.29.230.64|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.24.249.53.225.4.192|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.24.249.53.225.42.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.28.209.224.173.249.0|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.28.209.224.174.126.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.36.54.218.80.109.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.52.22.96|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.52.31.224|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.59.131.224|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.61.56.192|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.69.128.160|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.73.197.128|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.73.198.0|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.73.198.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.76.139.32|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.40.172.158.77.225.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.0.244.219.230.228.7.192|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.0.60.16.104.154.239|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.69.209.213.189.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.123.135.28.247.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.123.135.29.160.79|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.123.135.29.164.79|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.123.135.29.167.175|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.8.123.135.29.230.79|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.24.249.53.225.4.207|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.24.249.53.225.42.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.36.54.218.80.109.239|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.52.22.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.52.31.239|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.59.131.239|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.69.128.175|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.73.197.143|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.73.198.15|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.76.139.47|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.30.64.1.40.172.158.77.225.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.170.96.0.0.223.29.42.246.64|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.170.96.0.28.209.224.173.249.0|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.170.96.0.36.54.218.80.103.64|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.170.96.0.180.222.49.102.89.160|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.170.96.1.180.222.49.102.89.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.0.60.16.104.153.160|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.0.60.16.104.154.224|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.69.209.213.189.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.28.30.64|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.29.160.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.29.164.64|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.29.167.160|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.29.230.64|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.8.123.135.29.230.96|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.28.209.224.174.126.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.36.54.218.80.109.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.52.22.96|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.52.31.224|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.59.131.224|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.61.47.192|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.61.56.128|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.61.56.192|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.69.128.160|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.73.197.128|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.73.198.0|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.73.198.96|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.76.139.32|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.40.172.158.77.225.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.0.244.219.230.228.7.192|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.0.60.16.104.153.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.0.60.16.104.154.239|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.8.123.135.28.30.79|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.8.123.135.29.160.79|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.8.123.135.29.164.79|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.8.123.135.29.230.79|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.28.209.224.174.126.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.36.54.218.80.109.239|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.52.22.111|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.52.31.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.61.56.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.69.128.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.73.197.143|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.73.198.15|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.73.198.111|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.76.139.47|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.40.172.158.77.225.175|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.28.247.160.1.244.219.230.228.7.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.0.60.16.104.153.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.0.60.16.104.154.224|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.8.69.209.213.189.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.8.123.135.29.164.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.8.123.135.29.167.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.8.123.135.29.205.32|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.8.123.135.29.230.96|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.24.249.53.97.136.32|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.24.249.53.102.87.0|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.24.249.53.103.175.0|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.28.209.224.174.126.128|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.36.54.218.80.109.224|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.52.22.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.52.31.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.59.119.32|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.59.131.224|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.61.56.128|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.61.56.192|2|-50 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.69.128.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.73.197.128|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.73.198.96|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.40.172.158.77.225.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.112.105.90.156.95.64|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.0.244.219.230.228.7.192|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.0.60.16.104.154.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.8.123.135.29.164.15|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.8.123.135.29.167.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.8.123.135.29.205.47|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.8.123.135.29.230.111|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.24.249.53.97.136.47|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.24.249.53.103.175.15|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.28.209.224.174.126.143|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.36.54.218.80.109.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.52.22.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.52.31.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.59.119.47|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.61.56.143|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.61.56.207|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.73.198.111|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.40.172.158.77.225.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.9.128.1.112.105.90.156.95.79|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.0.60.16.104.153.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.0.60.16.104.154.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.69.209.213.189.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.123.135.28.30.64|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.123.135.28.247.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.123.135.29.164.64|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.123.135.29.167.160|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.8.123.135.29.230.64|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.24.249.53.225.4.192|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.24.249.53.225.42.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.28.209.224.173.249.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.28.209.224.174.126.128|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.36.54.218.80.109.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.52.22.96|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.52.31.224|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.59.131.224|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.61.56.192|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.69.128.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.73.197.128|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.73.198.0|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.73.198.96|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.76.139.32|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.40.172.158.77.225.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.0.244.219.230.228.7.192|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.0.60.16.104.153.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.0.60.16.104.154.239|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.69.209.213.189.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.123.135.28.30.79|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.123.135.28.247.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.123.135.29.164.79|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.123.135.29.167.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.8.123.135.29.230.79|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.24.249.53.225.4.207|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.24.249.53.225.42.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.28.209.224.174.126.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.36.54.218.80.109.239|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.52.22.111|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.52.31.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.59.131.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.69.128.175|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.73.197.143|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.73.198.15|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.76.139.47|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.160.64.1.40.172.158.77.225.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.0.60.16.104.154.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.8.69.209.213.189.0|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.8.123.135.29.9.128|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.8.123.135.29.205.32|2|-50 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.8.123.135.29.212.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.8.123.135.29.230.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.24.249.53.97.136.32|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.24.249.53.102.87.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.24.249.53.103.175.0|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.28.209.224.174.126.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.36.54.218.80.92.0|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.36.54.218.80.109.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.52.22.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.52.31.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.56.69.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.59.119.32|2|-33 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.59.131.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.61.47.192|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.61.56.128|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.61.56.192|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.73.198.96|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.40.172.158.77.225.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.112.105.90.156.95.64|2|-40 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.0.244.219.230.228.7.192|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.0.60.16.104.154.239|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.8.123.135.29.9.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.8.123.135.29.205.47|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.8.123.135.29.212.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.24.249.53.97.136.47|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.24.249.53.103.175.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.52.31.239|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.56.69.111|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.59.119.47|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.61.47.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.61.56.143|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.61.56.207|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.40.172.158.73.198.111|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.112.105.90.156.95.79|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.0.1.244.219.230.228.7.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.0.60.16.104.153.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.0.60.16.104.154.224|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.69.209.213.189.0|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.123.135.28.30.64|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.123.135.28.247.160|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.123.135.29.160.64|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.123.135.29.167.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.8.123.135.29.230.64|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.24.249.53.225.4.192|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.24.249.53.225.42.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.28.209.224.174.126.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.36.54.218.80.109.224|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.52.22.96|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.52.31.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.59.131.224|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.61.47.192|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.61.56.192|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.69.128.160|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.73.197.128|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.73.198.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.73.198.96|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.76.139.32|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.40.172.158.77.225.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.0.244.219.230.228.7.192|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.0.60.16.104.153.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.0.60.16.104.154.239|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.8.123.135.28.30.79|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.8.123.135.28.247.175|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.8.123.135.29.160.79|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.8.123.135.29.230.79|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.52.22.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.69.128.175|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.73.197.143|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.73.198.15|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.76.139.47|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.164.64.1.40.172.158.77.225.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.0.60.16.104.153.160|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.0.60.16.104.154.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.8.69.209.213.189.0|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.8.123.135.29.212.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.8.123.135.29.230.96|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.24.249.53.102.87.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.28.209.224.173.249.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.28.209.224.174.126.128|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.36.54.218.80.101.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.36.54.218.80.109.224|2|-43 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.52.22.96|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.52.31.224|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.56.69.96|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.59.131.224|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.61.47.192|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.61.56.128|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.61.56.192|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.69.128.160|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.73.197.128|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.73.198.96|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.76.139.32|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.40.172.158.77.225.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.88.139.28.15.230.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.0.244.219.230.228.7.192|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.0.60.16.104.153.175|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.0.60.16.104.154.239|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.8.69.209.213.189.15|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.8.123.135.29.212.175|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.8.123.135.29.230.111|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.24.249.53.102.87.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.28.209.224.173.249.15|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.28.209.224.174.126.143|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.36.54.218.80.101.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.36.54.218.80.109.239|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.52.22.111|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.52.31.239|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.56.69.111|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.59.131.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.61.47.207|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.61.56.207|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.69.128.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.73.197.143|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.73.198.111|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.40.172.158.77.225.175|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.88.139.28.6.101.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.88.139.28.8.178.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.88.139.28.15.230.143|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.167.160.1.244.219.230.228.7.207|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.0.60.16.104.153.160|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.0.60.16.104.154.224|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.8.123.135.29.9.128|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.8.123.135.29.164.0|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.8.123.135.29.212.160|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.8.123.135.29.230.96|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.24.249.53.97.136.32|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.24.249.53.102.87.0|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.24.249.53.103.175.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.28.209.224.174.126.128|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.36.54.218.80.92.0|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.36.54.218.80.109.224|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.52.22.96|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.52.31.224|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.56.69.96|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.59.119.32|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.59.131.224|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.61.47.192|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.61.56.128|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.61.56.192|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.73.198.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.40.172.158.77.225.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.112.105.90.156.95.64|2|-49 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.0.244.219.230.228.7.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.8.123.135.29.164.15|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.24.249.53.97.136.47|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.24.249.53.103.175.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.40.172.158.59.119.47|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.40.172.158.61.47.207|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.40.172.158.61.56.143|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.40.172.158.61.56.207|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.40.172.158.73.198.111|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.205.32.1.112.105.90.156.95.79|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.0.60.16.104.153.160|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.0.60.16.104.154.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.8.69.209.213.189.0|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.8.123.135.29.167.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.8.123.135.29.230.96|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.24.249.53.102.87.0|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.28.209.224.173.249.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.28.209.224.174.126.128|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.36.54.218.80.92.0|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.36.54.218.80.101.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.36.54.218.80.109.224|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.52.22.96|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.52.31.224|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.56.69.96|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.59.119.32|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.59.131.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.61.47.192|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.61.56.192|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.73.197.128|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.40.172.158.77.225.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.88.139.28.8.178.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.88.139.28.9.132.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.112.105.90.156.95.64|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.0.244.219.230.228.7.192|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.0.60.16.104.153.175|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.0.60.16.104.154.239|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.8.69.209.213.189.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.8.123.135.29.167.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.8.123.135.29.230.111|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.24.249.53.102.87.15|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.28.209.224.173.249.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.28.209.224.174.126.143|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.36.54.218.80.92.15|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.36.54.218.80.101.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.36.54.218.80.109.239|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.52.31.239|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.56.69.111|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.59.119.47|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.59.131.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.61.47.207|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.73.198.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.40.172.158.77.225.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.88.139.28.6.101.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.88.139.28.7.225.143|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.88.139.28.8.101.15|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.88.139.28.8.178.175|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.88.139.28.9.132.143|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.212.160.1.244.219.230.228.7.207|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.0.60.16.104.153.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.0.60.16.104.154.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.69.209.213.189.0|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.123.135.28.30.64|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.123.135.28.247.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.123.135.29.160.64|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.123.135.29.164.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.8.123.135.29.167.160|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.24.249.53.225.4.192|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.24.249.53.225.42.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.28.209.224.173.249.0|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.28.209.224.174.126.128|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.36.54.218.80.109.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.52.22.96|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.52.31.224|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.59.131.224|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.61.56.192|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.69.128.160|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.73.197.128|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.73.198.0|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.73.198.96|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.76.139.32|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.40.172.158.77.225.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.0.244.219.230.228.7.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.0.60.16.104.154.239|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.8.123.135.28.247.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.8.123.135.29.160.79|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.24.249.53.225.4.207|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.24.249.53.225.42.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.52.22.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.69.128.175|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.73.197.143|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.73.198.15|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.76.139.47|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.64.1.40.172.158.77.225.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.0.60.16.104.153.160|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.0.60.16.104.154.224|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.8.69.209.213.189.0|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.8.123.135.29.167.160|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.8.123.135.29.212.160|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.24.249.53.102.87.0|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.28.209.224.173.249.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.28.209.224.174.126.128|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.36.54.218.80.92.0|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.36.54.218.80.101.224|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.36.54.218.80.109.224|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.52.22.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.52.31.224|2|-43 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.56.69.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.59.131.224|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.61.47.192|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.61.56.192|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.73.197.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.73.198.96|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.40.172.158.77.225.160|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.88.139.28.6.101.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.88.139.28.7.225.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.88.139.28.8.178.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.0.244.219.230.228.7.192|2|-40 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.0.60.16.104.153.175|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.0.60.16.104.154.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.8.69.209.213.189.15|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.8.123.135.29.167.175|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.8.123.135.29.212.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.24.249.53.102.87.15|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.28.209.224.173.249.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.28.209.224.174.126.143|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.36.54.218.80.92.15|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.36.54.218.80.101.239|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.36.54.218.80.109.239|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.52.22.111|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.52.31.239|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.56.69.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.59.131.239|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.61.47.207|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.61.56.207|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.73.198.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.40.172.158.77.225.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.88.139.28.6.101.175|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.88.139.28.7.225.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.88.139.28.8.178.175|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.88.139.28.184.116.79|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.8.123.135.29.230.96.1.244.219.230.228.7.207|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.95.147.160.0.0.223.29.42.246.64|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.95.147.160.1.0.223.29.42.246.79|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.8.69.209.213.189.0|2|-99 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.8.123.135.29.9.128|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.8.123.135.29.164.0|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.8.123.135.29.205.32|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.8.123.135.29.212.160|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.24.249.53.102.87.0|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.24.249.53.103.175.0|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.36.54.218.80.92.0|2|-98 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.52.31.224|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.56.69.96|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.59.119.32|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.61.47.192|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.61.56.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.61.56.192|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.73.198.96|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.40.172.158.77.225.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.112.105.90.156.95.64|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.0.244.219.230.228.7.192|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.8.123.135.29.9.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.8.123.135.29.164.15|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.8.123.135.29.205.47|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.24.249.53.103.175.15|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.40.172.158.59.119.47|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.40.172.158.61.56.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.40.172.158.61.56.207|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.40.172.158.73.198.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.97.136.32.1.112.105.90.156.95.79|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.0.60.16.104.153.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.0.60.16.104.154.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.8.69.209.213.189.0|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.8.123.135.29.167.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.8.123.135.29.212.160|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.8.123.135.29.230.96|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.24.249.53.103.175.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.28.209.224.173.249.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.28.209.224.174.126.128|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.36.54.218.80.92.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.36.54.218.80.101.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.36.54.218.80.109.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.52.22.96|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.52.31.224|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.56.69.96|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.59.119.32|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.59.131.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.61.47.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.61.56.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.61.56.192|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.73.198.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.40.172.158.77.225.160|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.112.105.90.156.95.64|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.0.244.219.230.228.7.192|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.0.60.16.104.153.175|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.0.60.16.104.154.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.8.69.209.213.189.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.8.123.135.29.167.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.8.123.135.29.212.175|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.8.123.135.29.230.111|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.24.249.53.103.175.15|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.28.209.224.173.249.15|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.28.209.224.174.126.143|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.36.54.218.80.92.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.36.54.218.80.101.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.36.54.218.80.109.239|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.52.22.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.52.31.239|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.56.69.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.59.131.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.61.47.207|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.61.56.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.61.56.207|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.73.198.111|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.40.172.158.77.225.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.88.139.28.6.101.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.88.139.28.7.225.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.87.0.1.244.219.230.228.7.207|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.134.96.0.40.172.158.56.69.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.134.96.0.40.172.158.61.47.192|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.134.96.0.88.139.28.9.132.128|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.102.134.96.1.40.172.158.56.69.111|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.0.60.16.104.153.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.0.60.16.104.154.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.69.209.213.189.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.123.135.29.9.128|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.123.135.29.164.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.123.135.29.205.32|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.123.135.29.212.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.8.123.135.29.230.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.24.249.53.97.136.32|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.24.249.53.102.87.0|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.28.209.224.174.126.128|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.36.54.218.80.101.224|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.36.54.218.80.109.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.52.22.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.52.31.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.59.119.32|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.59.131.224|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.61.47.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.61.56.128|2|-45 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.61.56.192|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.73.198.96|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.40.172.158.77.225.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.112.105.90.156.95.64|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.0.244.219.230.228.7.192|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.0.60.16.104.154.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.8.123.135.29.9.143|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.8.123.135.29.164.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.8.123.135.29.205.47|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.8.123.135.29.212.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.8.123.135.29.230.111|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.24.249.53.97.136.47|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.24.249.53.102.87.15|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.28.209.224.174.126.143|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.36.54.218.80.109.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.52.31.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.59.119.47|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.61.47.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.61.56.143|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.61.56.207|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.73.198.111|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.40.172.158.77.225.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.112.105.90.156.95.79|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.103.175.0.1.244.219.230.228.7.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.0.60.16.104.153.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.0.60.16.104.154.224|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.69.209.213.189.0|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.28.30.64|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.28.247.160|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.29.160.64|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.29.164.64|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.29.167.160|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.8.123.135.29.230.64|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.24.249.53.225.42.224|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.28.209.224.174.126.128|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.36.54.218.80.109.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.52.22.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.52.31.224|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.59.131.224|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.69.128.160|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.73.197.128|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.73.198.0|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.76.139.32|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.0.40.172.158.77.225.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.0.60.16.104.154.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.8.123.135.28.30.79|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.8.123.135.29.160.79|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.8.123.135.29.230.79|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.24.249.53.225.42.239|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.52.22.111|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.69.128.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.73.197.143|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.73.198.15|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.76.139.47|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.4.192.1.40.172.158.77.225.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.0.60.16.104.153.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.0.60.16.104.154.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.69.209.213.189.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.28.30.64|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.28.247.160|2|-98 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.29.160.64|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.29.164.64|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.29.167.160|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.8.123.135.29.230.64|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.24.249.53.225.4.192|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.28.209.224.173.249.0|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.28.209.224.174.126.128|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.36.54.218.80.109.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.52.22.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.52.31.224|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.59.131.224|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.69.128.160|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.73.197.128|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.73.198.0|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.73.198.96|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.76.139.32|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.40.172.158.77.225.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.0.244.219.230.228.7.192|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.0.60.16.104.154.239|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.8.123.135.29.230.79|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.24.249.53.225.4.207|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.52.22.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.69.128.175|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.73.197.143|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.73.198.15|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.76.139.47|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.24.249.53.225.42.224.1.40.172.158.77.225.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.0.60.16.104.153.160|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.0.60.16.104.154.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.8.69.209.213.189.0|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.8.123.135.29.167.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.8.123.135.29.212.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.8.123.135.29.230.96|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.28.209.224.174.126.128|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.36.54.218.80.101.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.36.54.218.80.103.64|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.36.54.218.80.109.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.52.22.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.52.31.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.56.69.96|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.59.131.224|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.61.47.192|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.61.56.192|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.69.128.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.73.197.128|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.73.198.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.40.172.158.77.225.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.88.139.28.6.111.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.88.139.28.8.178.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.88.139.28.184.54.32|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.0.244.219.230.228.7.192|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.0.60.16.104.153.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.8.69.209.213.189.15|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.28.209.224.174.126.143|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.36.54.218.80.109.239|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.40.172.158.52.31.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.40.172.158.56.69.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.40.172.158.59.131.239|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.40.172.158.77.225.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.88.139.28.8.178.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.173.249.0.1.244.219.230.228.7.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.0.60.16.104.153.160|2|-41 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.0.60.16.104.154.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.8.69.209.213.189.0|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.8.123.135.29.167.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.8.123.135.29.212.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.8.123.135.29.230.96|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.24.249.53.102.87.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.28.209.224.173.249.0|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.36.54.218.80.92.0|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.36.54.218.80.101.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.36.54.218.80.103.64|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.36.54.218.80.109.224|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.52.22.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.52.31.224|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.56.69.96|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.59.131.224|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.61.47.192|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.61.56.192|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.69.128.160|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.73.197.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.73.198.96|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.76.139.32|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.40.172.158.77.225.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.0.244.219.230.228.7.192|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.0.60.16.104.153.175|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.0.60.16.104.154.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.8.69.209.213.189.15|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.8.123.135.29.167.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.8.123.135.29.212.175|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.8.123.135.29.230.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.24.249.53.102.87.15|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.28.209.224.173.249.15|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.36.54.218.80.109.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.52.22.111|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.52.31.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.59.131.239|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.61.47.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.73.197.143|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.73.198.111|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.40.172.158.77.225.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.28.209.224.174.126.128.1.244.219.230.228.7.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.0.60.16.104.153.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.0.60.16.104.154.224|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.8.69.209.213.189.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.8.123.135.29.212.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.8.123.135.29.230.96|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.24.249.53.102.87.0|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.28.209.224.173.249.0|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.28.209.224.174.126.128|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.36.54.218.80.101.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.36.54.218.80.109.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.52.22.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.52.31.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.56.69.96|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.59.119.32|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.59.131.224|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.61.47.192|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.61.56.128|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.61.56.192|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.40.172.158.77.225.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.88.139.28.8.101.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.88.139.28.8.178.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.88.139.28.9.132.128|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.112.105.90.156.95.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.0.244.219.230.228.7.192|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.0.60.16.104.153.175|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.8.69.209.213.189.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.8.123.135.29.230.111|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.36.54.218.80.101.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.36.54.218.80.109.239|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.40.172.158.52.31.239|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.40.172.158.56.69.111|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.40.172.158.59.131.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.40.172.158.61.47.207|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.88.139.28.9.132.143|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.92.0.1.244.219.230.228.7.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.0.60.16.104.153.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.0.60.16.104.154.224|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.8.69.209.213.189.0|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.8.123.135.29.167.160|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.8.123.135.29.212.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.8.123.135.29.230.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.24.249.53.102.87.0|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.28.209.224.173.249.0|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.28.209.224.174.126.128|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.36.54.218.80.92.0|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.36.54.218.80.109.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.52.22.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.52.31.224|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.56.69.96|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.59.131.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.61.47.192|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.61.56.192|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.40.172.158.77.225.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.88.139.28.6.101.160|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.88.139.28.7.225.128|2|-50 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.88.139.28.8.101.0|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.88.139.28.8.178.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.88.139.28.9.132.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.0.244.219.230.228.7.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.0.60.16.104.153.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.8.69.209.213.189.15|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.8.123.135.29.167.175|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.36.54.218.80.92.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.36.54.218.80.109.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.40.172.158.52.31.239|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.40.172.158.56.69.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.40.172.158.59.131.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.40.172.158.61.47.207|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.88.139.28.6.101.175|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.88.139.28.7.225.143|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.88.139.28.9.132.143|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.101.224.1.244.219.230.228.7.207|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.0.60.16.104.153.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.0.60.16.104.154.224|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.8.69.209.213.189.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.28.209.224.173.249.0|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.28.209.224.174.126.128|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.36.54.218.80.109.224|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.40.172.158.52.22.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.40.172.158.52.31.224|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.40.172.158.59.131.224|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.0.180.222.49.102.89.160|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.1.0.60.16.104.153.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.1.0.60.16.104.154.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.103.64.1.28.209.224.174.126.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.0.60.16.104.153.160|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.0.60.16.104.154.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.8.69.209.213.189.0|2|-50 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.8.123.135.29.167.160|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.8.123.135.29.212.160|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.8.123.135.29.230.96|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.24.249.53.102.87.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.28.209.224.173.249.0|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.28.209.224.174.126.128|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.36.54.218.80.101.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.52.22.96|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.52.31.224|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.56.69.96|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.59.131.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.61.47.192|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.61.56.192|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.69.128.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.73.197.128|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.73.198.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.40.172.158.77.225.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.88.139.28.8.178.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.88.139.28.15.230.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.88.139.28.184.54.32|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.0.244.219.230.228.7.192|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.0.60.16.104.153.175|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.0.60.16.104.154.239|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.8.69.209.213.189.15|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.8.123.135.29.167.175|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.8.123.135.29.230.111|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.28.209.224.173.249.15|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.28.209.224.174.126.143|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.36.54.218.80.92.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.36.54.218.80.101.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.52.22.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.52.31.239|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.56.69.111|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.59.131.239|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.61.47.207|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.61.56.207|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.69.128.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.73.197.143|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.73.198.111|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.40.172.158.77.225.175|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.88.139.28.6.101.175|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.88.139.28.7.225.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.88.139.28.9.132.143|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.88.139.28.184.116.79|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.36.54.218.80.109.224.1.244.219.230.228.7.207|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.0.60.16.104.153.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.0.60.16.104.154.224|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.69.209.213.189.0|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.123.135.28.30.64|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.123.135.28.247.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.123.135.29.160.64|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.123.135.29.167.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.8.123.135.29.230.64|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.24.249.53.225.42.224|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.28.209.224.173.249.0|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.28.209.224.174.126.128|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.36.54.218.80.109.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.52.31.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.59.131.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.61.47.192|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.61.56.128|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.61.56.192|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.69.128.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.73.197.128|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.73.198.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.73.198.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.76.139.32|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.40.172.158.77.225.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.0.244.219.230.228.7.192|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.0.60.16.104.153.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.0.60.16.104.154.239|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.8.69.209.213.189.15|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.8.123.135.28.30.79|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.8.123.135.29.167.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.36.54.218.80.109.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.52.31.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.59.131.239|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.61.56.207|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.69.128.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.73.197.143|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.73.198.15|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.73.198.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.76.139.47|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.40.172.158.77.225.175|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.22.96.1.244.219.230.228.7.207|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.0.60.16.104.153.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.0.60.16.104.154.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.8.69.209.213.189.0|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.8.123.135.29.167.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.8.123.135.29.212.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.8.123.135.29.230.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.24.249.53.102.87.0|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.28.209.224.173.249.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.28.209.224.174.126.128|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.36.54.218.80.92.0|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.36.54.218.80.101.224|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.36.54.218.80.109.224|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.52.22.96|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.56.69.96|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.59.131.224|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.61.47.192|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.61.56.192|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.73.197.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.73.198.96|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.40.172.158.77.225.160|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.88.139.28.6.101.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.88.139.28.8.178.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.88.139.28.184.116.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.0.244.219.230.228.7.192|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.0.60.16.104.153.175|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.0.60.16.104.154.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.8.69.209.213.189.15|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.8.123.135.29.167.175|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.8.123.135.29.212.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.8.123.135.29.230.111|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.24.249.53.102.87.15|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.28.209.224.173.249.15|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.28.209.224.174.126.143|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.36.54.218.80.101.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.36.54.218.80.109.239|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.52.22.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.56.69.111|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.59.131.239|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.61.47.207|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.61.56.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.73.198.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.40.172.158.77.225.175|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.88.139.28.6.101.175|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.88.139.28.7.225.143|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.88.139.28.8.178.175|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.88.139.28.15.230.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.88.139.28.184.116.79|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.52.31.224.1.244.219.230.228.7.207|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.0.60.16.104.153.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.8.69.209.213.189.0|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.8.123.135.29.167.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.8.123.135.29.212.160|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.8.123.135.29.230.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.24.249.53.102.87.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.24.249.53.102.134.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.28.209.224.173.249.0|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.28.209.224.174.126.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.36.54.218.80.92.0|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.36.54.218.80.101.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.36.54.218.80.109.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.52.22.96|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.52.31.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.59.119.32|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.59.131.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.61.47.192|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.61.56.192|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.40.172.158.77.225.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.88.139.28.6.101.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.88.139.28.8.101.0|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.88.139.28.8.178.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.88.139.28.9.132.128|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.0.244.219.230.228.7.192|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.0.60.16.104.153.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.8.69.209.213.189.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.8.123.135.29.230.111|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.36.54.218.80.92.15|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.36.54.218.80.101.239|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.36.54.218.80.109.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.40.172.158.52.31.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.40.172.158.59.131.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.40.172.158.61.47.207|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.88.139.28.6.101.175|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.88.139.28.7.225.143|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.88.139.28.8.101.15|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.88.139.28.9.132.143|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.56.69.96.1.244.219.230.228.7.207|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.0.60.16.104.153.160|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.0.60.16.104.154.224|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.8.69.209.213.189.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.8.123.135.29.9.128|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.8.123.135.29.164.0|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.8.123.135.29.205.32|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.8.123.135.29.212.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.24.249.53.97.136.32|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.24.249.53.102.87.0|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.24.249.53.103.175.0|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.28.209.224.174.126.128|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.36.54.218.80.92.0|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.36.54.218.80.109.224|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.52.22.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.52.31.224|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.56.69.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.59.131.224|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.61.47.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.61.56.128|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.61.56.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.73.198.96|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.40.172.158.77.225.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.112.105.90.156.95.64|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.0.244.219.230.228.7.192|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.0.60.16.104.154.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.8.123.135.29.205.47|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.40.172.158.61.47.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.40.172.158.61.56.143|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.40.172.158.61.56.207|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.40.172.158.73.198.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.40.172.158.77.225.175|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.112.105.90.156.95.79|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.119.32.1.244.219.230.228.7.207|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.0.60.16.104.153.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.0.60.16.104.154.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.8.69.209.213.189.0|2|-50 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.8.123.135.29.167.160|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.8.123.135.29.212.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.8.123.135.29.230.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.28.209.224.173.249.0|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.28.209.224.174.126.128|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.36.54.218.80.92.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.36.54.218.80.101.224|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.36.54.218.80.109.224|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.52.22.96|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.52.31.224|2|-48 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.56.69.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.61.47.192|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.61.56.192|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.73.197.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.73.198.96|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.40.172.158.77.225.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.88.139.28.6.101.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.88.139.28.6.111.192|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.88.139.28.8.178.160|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.88.139.28.9.132.128|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.0.244.219.230.228.7.192|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.0.60.16.104.153.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.8.69.209.213.189.15|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.8.123.135.29.167.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.8.123.135.29.212.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.8.123.135.29.230.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.28.209.224.173.249.15|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.28.209.224.174.126.143|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.36.54.218.80.92.15|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.36.54.218.80.101.239|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.36.54.218.80.109.239|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.40.172.158.52.22.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.40.172.158.52.31.239|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.40.172.158.56.69.111|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.40.172.158.61.47.207|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.40.172.158.77.225.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.6.101.175|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.6.111.207|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.7.225.143|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.8.101.15|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.8.178.175|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.9.132.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.184.54.47|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.88.139.28.184.116.79|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.59.131.224.1.244.219.230.228.7.207|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.0.60.16.104.153.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.8.69.209.213.189.0|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.8.123.135.29.164.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.8.123.135.29.167.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.8.123.135.29.212.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.8.123.135.29.230.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.24.249.53.102.87.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.28.209.224.173.249.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.28.209.224.174.126.128|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.36.54.218.80.92.0|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.36.54.218.80.101.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.36.54.218.80.109.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.52.22.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.52.31.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.56.69.96|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.59.119.32|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.59.131.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.61.56.192|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.73.198.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.40.172.158.77.225.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.88.139.28.8.178.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.88.139.28.9.132.128|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.112.105.90.156.95.64|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.0.244.219.230.228.7.192|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.0.60.16.104.153.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.0.60.16.104.154.239|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.8.69.209.213.189.15|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.8.123.135.29.230.111|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.28.209.224.174.126.143|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.36.54.218.80.92.15|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.36.54.218.80.101.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.36.54.218.80.109.239|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.40.172.158.52.31.239|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.40.172.158.56.69.111|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.40.172.158.59.119.47|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.40.172.158.59.131.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.40.172.158.77.225.175|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.88.139.28.6.101.175|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.88.139.28.7.225.143|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.88.139.28.8.101.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.112.105.90.156.95.79|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.47.192.1.244.219.230.228.7.207|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.0.60.16.104.153.160|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.0.60.16.104.154.224|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.69.209.213.189.0|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.123.135.29.9.128|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.123.135.29.164.0|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.123.135.29.167.160|2|-98 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.123.135.29.205.32|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.8.123.135.29.230.96|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.24.249.53.97.136.32|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.24.249.53.102.87.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.24.249.53.103.175.0|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.28.209.224.174.126.128|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.36.54.218.80.109.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.52.22.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.52.31.224|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.59.119.32|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.61.47.192|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.61.56.192|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.69.128.160|2|-99 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.73.197.128|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.73.198.96|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.40.172.158.77.225.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.112.105.90.156.95.64|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.0.244.219.230.228.7.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.0.60.16.104.154.239|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.8.123.135.29.9.143|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.8.123.135.29.164.15|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.8.123.135.29.205.47|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.24.249.53.97.136.47|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.24.249.53.103.175.15|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.40.172.158.59.119.47|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.40.172.158.61.56.207|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.40.172.158.73.198.111|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.40.172.158.77.225.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.112.105.90.156.95.79|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.128.1.244.219.230.228.7.207|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.0.60.16.104.153.160|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.0.60.16.104.154.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.69.209.213.189.0|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.123.135.29.9.128|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.123.135.29.164.0|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.123.135.29.167.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.123.135.29.205.32|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.8.123.135.29.230.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.24.249.53.97.136.32|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.24.249.53.102.87.0|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.24.249.53.103.175.0|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.28.209.224.174.126.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.36.54.218.80.109.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.52.22.96|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.52.31.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.59.119.32|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.59.131.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.61.47.192|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.61.56.128|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.73.197.128|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.73.198.96|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.40.172.158.77.225.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.112.105.90.156.95.64|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.0.244.219.230.228.7.192|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.0.60.16.104.153.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.0.60.16.104.154.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.8.69.209.213.189.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.8.123.135.29.167.175|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.8.123.135.29.205.47|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.24.249.53.97.136.47|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.24.249.53.103.175.15|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.36.54.218.80.109.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.52.22.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.52.31.239|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.59.119.47|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.61.56.143|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.73.198.111|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.40.172.158.77.225.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.112.105.90.156.95.79|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.61.56.192.1.244.219.230.228.7.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.0.60.16.104.153.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.0.60.16.104.154.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.69.209.213.189.0|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.28.30.64|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.28.247.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.29.160.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.29.164.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.29.167.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.8.123.135.29.230.64|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.24.249.53.225.4.192|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.24.249.53.225.42.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.28.209.224.173.249.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.28.209.224.174.126.128|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.36.54.218.80.109.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.52.22.96|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.52.31.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.59.131.224|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.61.56.192|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.73.197.128|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.73.198.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.73.198.96|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.76.139.32|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.40.172.158.77.225.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.0.244.219.230.228.7.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.0.60.16.104.153.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.0.60.16.104.154.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.8.69.209.213.189.15|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.8.123.135.28.247.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.8.123.135.29.167.175|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.24.249.53.225.42.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.28.209.224.173.249.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.28.209.224.174.126.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.36.54.218.80.109.239|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.40.172.158.52.22.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.40.172.158.73.197.143|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.40.172.158.73.198.15|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.40.172.158.76.139.47|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.69.128.160.1.40.172.158.77.225.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.0.60.16.104.153.160|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.0.60.16.104.154.224|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.69.209.213.189.0|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.28.30.64|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.28.247.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.29.160.64|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.29.164.64|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.29.167.160|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.8.123.135.29.230.64|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.24.249.53.225.4.192|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.24.249.53.225.42.224|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.28.209.224.173.249.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.28.209.224.174.126.128|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.36.54.218.80.109.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.52.22.96|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.52.31.224|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.59.131.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.61.56.192|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.69.128.160|2|-41 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.73.198.0|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.73.198.96|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.76.139.32|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.40.172.158.77.225.160|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.0.244.219.230.228.7.192|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.0.60.16.104.153.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.0.60.16.104.154.239|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.69.209.213.189.15|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.28.30.79|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.28.247.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.29.160.79|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.29.164.79|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.29.167.175|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.8.123.135.29.230.79|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.24.249.53.225.4.207|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.24.249.53.225.42.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.28.209.224.173.249.15|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.28.209.224.174.126.143|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.36.54.218.80.109.239|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.52.22.111|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.52.31.239|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.59.131.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.69.128.175|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.73.198.15|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.73.198.111|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.76.139.47|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.40.172.158.77.225.175|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.197.128.1.244.219.230.228.7.207|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.0.60.16.104.153.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.0.60.16.104.154.224|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.69.209.213.189.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.28.30.64|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.28.247.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.29.160.64|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.29.164.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.29.167.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.8.123.135.29.230.64|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.24.249.53.225.4.192|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.24.249.53.225.42.224|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.28.209.224.173.249.0|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.28.209.224.174.126.128|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.36.54.218.80.109.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.52.22.96|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.52.31.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.59.131.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.61.56.192|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.69.128.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.73.197.128|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.73.198.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.76.139.32|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.40.172.158.77.225.160|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.0.244.219.230.228.7.192|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.0.60.16.104.154.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.24.249.53.225.42.239|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.36.54.218.80.109.239|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.40.172.158.52.22.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.40.172.158.69.128.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.40.172.158.73.197.143|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.40.172.158.76.139.47|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.0.1.40.172.158.77.225.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.0.60.16.104.153.160|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.0.60.16.104.154.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.69.209.213.189.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.123.135.29.9.128|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.123.135.29.164.0|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.123.135.29.167.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.123.135.29.205.32|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.8.123.135.29.230.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.24.249.53.103.175.0|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.28.209.224.173.249.0|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.28.209.224.174.126.128|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.36.54.218.80.109.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.52.22.96|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.52.31.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.59.119.32|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.59.131.224|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.61.47.192|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.61.56.128|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.61.56.192|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.69.128.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.73.197.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.40.172.158.77.225.160|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.112.105.90.156.95.64|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.0.244.219.230.228.7.192|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.0.60.16.104.153.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.0.60.16.104.154.239|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.8.69.209.213.189.15|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.8.123.135.29.230.111|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.24.249.53.103.175.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.28.209.224.174.126.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.36.54.218.80.109.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.52.22.111|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.52.31.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.59.119.47|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.59.131.239|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.61.56.143|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.61.56.207|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.73.197.143|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.40.172.158.77.225.175|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.112.105.90.156.95.79|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.73.198.96.1.244.219.230.228.7.207|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.0.60.16.104.153.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.0.60.16.104.154.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.69.209.213.189.0|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.123.135.28.30.64|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.123.135.29.160.64|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.123.135.29.164.64|2|-98 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.123.135.29.167.160|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.8.123.135.29.230.64|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.24.249.53.225.4.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.24.249.53.225.42.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.28.209.224.173.249.0|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.28.209.224.174.126.128|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.36.54.218.80.109.224|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.52.22.96|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.52.31.224|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.59.131.224|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.61.47.192|2|-101 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.61.56.192|2|-102 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.69.128.160|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.73.197.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.73.198.0|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.73.198.96|2|-99 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.40.172.158.77.225.160|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.0.244.219.230.228.7.192|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.0.60.16.104.153.175|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.0.60.16.104.154.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.8.123.135.28.30.79|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.8.123.135.29.160.79|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.8.123.135.29.230.79|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.24.249.53.225.4.207|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.24.249.53.225.42.239|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.36.54.218.80.109.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.40.172.158.52.22.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.40.172.158.69.128.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.40.172.158.73.197.143|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.40.172.158.73.198.15|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.76.139.32.1.40.172.158.77.225.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.0.60.16.104.153.160|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.0.60.16.104.154.224|2|-44 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.69.209.213.189.0|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.28.30.64|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.29.9.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.29.160.64|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.29.167.160|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.29.230.64|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.8.123.135.29.230.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.28.209.224.173.249.0|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.28.209.224.174.126.128|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.36.54.218.80.109.224|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.52.22.96|2|-43 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.52.31.224|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.59.131.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.61.47.192|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.61.56.128|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.61.56.192|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.69.128.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.73.197.128|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.73.198.0|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.73.198.96|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.40.172.158.76.139.32|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.0.244.219.230.228.7.192|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.0.60.16.104.153.175|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.0.60.16.104.154.239|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.8.69.209.213.189.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.8.123.135.28.247.175|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.8.123.135.29.167.175|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.8.123.135.29.230.111|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.28.209.224.173.249.15|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.28.209.224.174.126.143|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.36.54.218.80.109.239|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.52.22.111|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.52.31.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.59.131.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.61.56.207|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.69.128.175|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.73.197.143|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.73.198.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.73.198.111|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.40.172.158.76.139.47|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.40.172.158.77.225.160.1.244.219.230.228.7.207|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.0.60.16.104.153.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.0.60.16.104.154.224|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.8.69.209.213.189.0|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.8.123.135.29.167.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.8.123.135.29.212.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.8.123.135.29.230.96|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.24.249.53.102.87.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.28.209.224.173.249.0|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.28.209.224.174.126.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.36.54.218.80.92.0|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.36.54.218.80.101.224|2|-39 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.36.54.218.80.109.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.52.22.96|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.52.31.224|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.56.69.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.59.131.224|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.61.47.192|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.61.56.192|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.73.198.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.40.172.158.77.225.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.88.139.28.7.225.128|2|-49 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.88.139.28.8.178.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.88.139.28.184.116.64|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.0.244.219.230.228.7.192|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.0.60.16.104.153.175|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.0.60.16.104.154.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.8.69.209.213.189.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.8.123.135.29.167.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.8.123.135.29.212.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.8.123.135.29.230.111|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.24.249.53.102.87.15|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.28.209.224.173.249.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.28.209.224.174.126.143|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.36.54.218.80.92.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.36.54.218.80.101.239|2|-51 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.36.54.218.80.109.239|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.40.172.158.52.22.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.40.172.158.52.31.239|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.40.172.158.56.69.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.40.172.158.59.131.239|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.40.172.158.61.47.207|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.6.111.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.7.225.143|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.8.101.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.8.178.175|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.9.132.143|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.88.139.28.184.116.79|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.101.160.1.244.219.230.228.7.207|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.0.60.16.104.153.160|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.8.69.209.213.189.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.8.123.135.29.167.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.8.123.135.29.212.160|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.8.123.135.29.230.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.24.249.53.102.87.0|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.28.209.224.173.249.0|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.28.209.224.174.126.128|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.36.54.218.80.92.0|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.36.54.218.80.101.224|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.36.54.218.80.109.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.52.22.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.52.31.224|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.56.69.96|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.59.131.224|2|-45 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.61.47.192|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.40.172.158.77.225.160|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.6.101.160|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.7.225.128|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.8.101.0|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.8.178.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.9.132.128|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.88.139.28.184.116.64|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.0.244.219.230.228.7.192|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.8.69.209.213.189.15|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.8.123.135.29.230.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.28.209.224.173.249.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.28.209.224.174.126.143|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.36.54.218.80.101.239|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.36.54.218.80.109.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.40.172.158.52.31.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.40.172.158.56.69.111|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.40.172.158.59.131.239|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.40.172.158.61.47.207|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.88.139.28.6.101.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.88.139.28.7.225.143|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.88.139.28.8.101.15|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.88.139.28.8.178.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.88.139.28.9.132.143|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.6.111.192.1.244.219.230.228.7.207|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.0.60.16.104.153.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.8.69.209.213.189.0|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.8.123.135.29.167.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.8.123.135.29.212.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.8.123.135.29.230.96|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.24.249.53.102.87.0|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.28.209.224.173.249.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.28.209.224.174.126.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.36.54.218.80.92.0|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.36.54.218.80.101.224|2|-25 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.36.54.218.80.109.224|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.52.22.96|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.52.31.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.56.69.96|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.59.131.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.61.47.192|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.61.56.192|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.40.172.158.77.225.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.88.139.28.6.101.160|2|-38 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.88.139.28.8.101.0|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.88.139.28.8.178.160|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.88.139.28.9.132.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.88.139.28.184.116.64|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.0.244.219.230.228.7.192|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.0.60.16.104.153.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.0.60.16.104.154.239|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.8.69.209.213.189.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.8.123.135.29.167.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.8.123.135.29.212.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.8.123.135.29.230.111|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.24.249.53.102.87.15|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.28.209.224.173.249.15|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.28.209.224.174.126.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.36.54.218.80.92.15|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.36.54.218.80.101.239|2|-37 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.36.54.218.80.109.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.52.22.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.52.31.239|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.56.69.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.59.131.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.61.47.207|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.61.56.207|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.40.172.158.77.225.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.88.139.28.6.101.175|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.88.139.28.8.101.15|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.88.139.28.8.178.175|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.88.139.28.9.132.143|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.7.225.128.1.244.219.230.228.7.207|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.0.60.16.104.153.160|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.8.69.209.213.189.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.8.123.135.29.167.160|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.8.123.135.29.212.160|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.8.123.135.29.230.96|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.24.249.53.102.87.0|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.28.209.224.173.249.0|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.28.209.224.174.126.128|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.36.54.218.80.92.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.36.54.218.80.101.224|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.36.54.218.80.109.224|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.52.22.96|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.52.31.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.56.69.96|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.59.119.32|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.59.131.224|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.61.47.192|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.40.172.158.77.225.160|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.88.139.28.6.101.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.88.139.28.6.111.192|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.88.139.28.7.225.128|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.88.139.28.8.178.160|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.88.139.28.9.132.128|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.0.244.219.230.228.7.192|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.8.69.209.213.189.15|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.8.123.135.29.230.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.28.209.224.174.126.143|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.36.54.218.80.92.15|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.36.54.218.80.101.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.36.54.218.80.109.239|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.40.172.158.52.31.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.40.172.158.56.69.111|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.40.172.158.59.131.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.40.172.158.61.47.207|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.88.139.28.6.101.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.88.139.28.7.225.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.101.0.1.244.219.230.228.7.207|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.0.60.16.104.153.160|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.8.69.209.213.189.0|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.8.123.135.29.167.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.8.123.135.29.212.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.8.123.135.29.230.96|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.24.249.53.102.87.0|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.28.209.224.173.249.0|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.28.209.224.174.126.128|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.36.54.218.80.92.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.36.54.218.80.101.224|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.36.54.218.80.109.224|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.52.22.96|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.52.31.224|2|-54 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.56.69.96|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.59.131.224|2|-47 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.61.47.192|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.61.56.192|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.40.172.158.77.225.160|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.88.139.28.6.101.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.88.139.28.6.111.192|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.88.139.28.7.225.128|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.88.139.28.8.101.0|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.88.139.28.9.132.128|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.0.244.219.230.228.7.192|2|-57 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.0.60.16.104.153.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.8.69.209.213.189.15|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.8.123.135.29.167.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.8.123.135.29.212.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.8.123.135.29.230.111|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.24.249.53.102.87.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.28.209.224.173.249.15|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.28.209.224.174.126.143|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.36.54.218.80.92.15|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.36.54.218.80.101.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.36.54.218.80.109.239|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.52.22.111|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.52.31.239|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.56.69.111|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.59.131.239|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.61.47.207|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.40.172.158.77.225.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.6.101.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.6.111.207|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.7.225.143|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.8.101.15|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.9.132.143|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.88.139.28.184.116.79|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.8.178.160.1.244.219.230.228.7.207|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.0.60.16.104.153.160|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.8.69.209.213.189.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.8.123.135.29.167.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.8.123.135.29.212.160|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.8.123.135.29.230.96|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.24.249.53.102.87.0|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.28.209.224.173.249.0|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.28.209.224.174.126.128|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.36.54.218.80.92.0|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.36.54.218.80.101.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.36.54.218.80.109.224|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.52.22.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.52.31.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.56.69.96|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.59.119.32|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.59.131.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.61.47.192|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.40.172.158.77.225.160|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.88.139.28.6.101.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.88.139.28.7.225.128|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.88.139.28.8.101.0|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.88.139.28.8.178.160|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.112.105.90.156.95.64|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.0.244.219.230.228.7.192|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.0.60.16.104.153.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.8.69.209.213.189.15|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.8.123.135.29.167.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.8.123.135.29.212.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.8.123.135.29.230.111|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.24.249.53.102.87.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.28.209.224.173.249.15|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.28.209.224.174.126.143|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.36.54.218.80.92.15|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.36.54.218.80.101.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.36.54.218.80.109.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.40.172.158.52.31.239|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.40.172.158.56.69.111|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.40.172.158.59.119.47|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.40.172.158.59.131.239|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.40.172.158.61.47.207|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.88.139.28.6.101.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.88.139.28.6.111.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.88.139.28.7.225.143|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.88.139.28.8.101.15|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.88.139.28.8.178.175|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.9.132.128.1.244.219.230.228.7.207|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.0.60.16.104.153.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.0.60.16.104.154.224|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.8.69.209.213.189.0|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.8.123.135.29.167.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.8.123.135.29.212.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.8.123.135.29.230.96|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.24.249.53.102.87.0|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.28.209.224.173.249.0|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.28.209.224.174.126.128|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.36.54.218.80.101.224|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.36.54.218.80.109.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.52.22.96|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.52.31.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.56.69.96|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.59.131.224|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.61.47.192|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.61.56.192|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.69.128.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.73.197.128|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.73.198.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.40.172.158.77.225.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.88.139.28.184.54.32|2|-81 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.88.139.28.184.116.64|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.0.244.219.230.228.7.192|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.0.60.16.104.153.175|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.0.60.16.104.154.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.8.69.209.213.189.15|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.8.123.135.29.167.175|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.8.123.135.29.212.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.8.123.135.29.230.111|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.24.249.53.102.87.15|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.28.209.224.173.249.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.28.209.224.174.126.143|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.36.54.218.80.101.239|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.36.54.218.80.109.239|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.52.22.111|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.52.31.239|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.56.69.111|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.59.131.239|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.61.47.207|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.73.197.143|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.73.198.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.40.172.158.77.225.175|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.88.139.28.6.101.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.88.139.28.8.178.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.88.139.28.184.54.47|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.88.139.28.184.116.79|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.15.230.128.1.244.219.230.228.7.207|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.0.60.16.104.153.160|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.0.60.16.104.154.224|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.8.69.209.213.189.0|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.8.123.135.29.167.160|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.8.123.135.29.212.160|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.8.123.135.29.230.96|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.24.249.53.102.87.0|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.28.209.224.173.249.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.28.209.224.174.126.128|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.36.54.218.80.101.224|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.36.54.218.80.109.224|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.52.22.96|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.52.31.224|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.56.69.96|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.59.131.224|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.61.47.192|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.61.56.192|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.73.197.128|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.73.198.96|2|-94 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.40.172.158.77.225.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.88.139.28.8.178.160|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.88.139.28.15.230.128|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.88.139.28.184.116.64|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.0.244.219.230.228.7.192|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.0.60.16.104.153.175|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.8.69.209.213.189.15|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.8.123.135.29.167.175|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.8.123.135.29.230.111|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.28.209.224.173.249.15|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.28.209.224.174.126.143|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.36.54.218.80.101.239|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.36.54.218.80.109.239|2|-76 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.40.172.158.52.31.239|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.40.172.158.56.69.111|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.40.172.158.59.131.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.40.172.158.77.225.175|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.88.139.28.6.101.175|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.88.139.28.8.178.175|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.88.139.28.15.230.143|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.88.139.28.184.116.79|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.54.32.1.244.219.230.228.7.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.0.60.16.104.153.160|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.0.60.16.104.154.224|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.8.69.209.213.189.0|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.8.123.135.29.167.160|2|-82 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.8.123.135.29.230.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.24.249.53.102.87.0|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.28.209.224.173.249.0|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.28.209.224.174.126.128|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.36.54.218.80.92.0|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.36.54.218.80.101.224|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.36.54.218.80.109.224|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.52.22.96|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.52.31.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.56.69.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.59.131.224|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.61.47.192|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.61.56.192|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.73.197.128|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.73.198.96|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.40.172.158.77.225.160|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.88.139.28.6.101.160|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.88.139.28.8.178.160|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.88.139.28.15.230.128|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.0.244.219.230.228.7.192|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.0.60.16.104.153.175|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.0.60.16.104.154.239|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.8.69.209.213.189.15|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.8.123.135.29.167.175|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.8.123.135.29.230.111|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.28.209.224.173.249.15|2|-77 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.28.209.224.174.126.143|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.36.54.218.80.101.239|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.36.54.218.80.109.239|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.52.22.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.52.31.239|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.56.69.111|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.59.131.239|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.61.47.207|2|-85 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.73.198.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.40.172.158.77.225.175|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.88.139.28.6.101.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.88.139.28.7.225.143|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.88.139.28.184.116.64.1.244.219.230.228.7.207|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.0.60.16.104.153.160|2|-100 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.0.60.16.104.154.224|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.8.69.209.213.189.0|2|-96 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.8.123.135.29.9.128|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.8.123.135.29.164.0|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.8.123.135.29.205.32|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.8.123.135.29.212.160|2|-90 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.24.249.53.97.136.32|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.24.249.53.102.87.0|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.24.249.53.103.175.0|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.28.209.224.174.126.128|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.36.54.218.80.92.0|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.36.54.218.80.109.224|2|-95 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.52.22.96|2|-97 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.52.31.224|2|-92 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.56.69.96|2|-87 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.59.119.32|2|-46 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.59.131.224|2|-99 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.61.47.192|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.61.56.128|2|-63 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.61.56.192|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.73.198.96|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.40.172.158.77.225.160|2|-83 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.0.244.219.230.228.7.192|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.8.123.135.29.164.15|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.8.123.135.29.205.47|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.24.249.53.97.136.47|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.24.249.53.103.175.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.40.172.158.59.119.47|2|-56 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.40.172.158.61.47.207|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.40.172.158.61.56.143|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.40.172.158.61.56.207|2|-73 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.40.172.158.73.198.111|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.112.105.90.156.95.64.1.244.219.230.228.7.207|2|-91 +1.3.6.1.4.1.14179.2.2.17.1.3.180.222.49.102.89.160.0.0.60.16.104.154.224|2|-100 +1.3.6.1.4.1.14179.2.2.17.1.3.180.222.49.102.89.160.0.0.223.29.42.246.64|2|-93 +1.3.6.1.4.1.14179.2.2.17.1.3.180.222.49.102.89.160.0.8.123.135.28.170.96|2|-89 +1.3.6.1.4.1.14179.2.2.17.1.3.180.222.49.102.89.160.0.28.209.224.173.249.0|2|-100 +1.3.6.1.4.1.14179.2.2.17.1.3.180.222.49.102.89.160.0.36.54.218.80.103.64|2|-98 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.0.60.16.104.153.160|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.0.60.16.104.154.224|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.8.69.209.213.189.0|2|-55 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.8.123.135.29.167.160|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.8.123.135.29.212.160|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.8.123.135.29.230.96|2|-60 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.24.249.53.102.87.0|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.28.209.224.173.249.0|2|-65 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.28.209.224.174.126.128|2|-62 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.36.54.218.80.92.0|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.36.54.218.80.101.224|2|-61 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.36.54.218.80.109.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.52.22.96|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.52.31.224|2|-52 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.56.69.96|2|-59 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.59.119.32|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.59.131.224|2|-58 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.61.47.192|2|-53 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.61.56.192|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.73.198.96|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.40.172.158.77.225.160|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.88.139.28.7.225.128|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.88.139.28.8.178.160|2|-64 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.0.88.139.28.9.132.128|2|-72 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.0.60.16.104.153.175|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.0.60.16.104.154.239|2|-80 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.8.69.209.213.189.15|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.8.123.135.29.230.111|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.28.209.224.173.249.15|2|-74 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.28.209.224.174.126.143|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.36.54.218.80.92.15|2|-78 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.36.54.218.80.101.239|2|-69 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.36.54.218.80.109.239|2|-67 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.52.22.111|2|-86 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.52.31.239|2|-66 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.56.69.111|2|-75 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.59.131.239|2|-70 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.61.47.207|2|-68 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.61.56.207|2|-88 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.73.198.111|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.40.172.158.77.225.175|2|-84 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.88.139.28.7.225.143|2|-79 +1.3.6.1.4.1.14179.2.2.17.1.3.244.219.230.228.7.192.1.88.139.28.8.178.175|2|-71 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.153.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.60.16.104.154.224.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.0.223.29.42.246.64.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.69.209.213.189.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.30.64.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.170.96.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.170.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.170.96.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.170.96.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.170.96.1.180.222.49.102.89.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.28.247.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.9.128.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.160.64.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.164.64.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.167.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.205.32.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.212.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.64.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.8.123.135.29.230.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.95.147.160.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.95.147.160.1.0.223.29.42.246.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.97.136.32.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.87.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.134.96.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.134.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.134.96.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.102.134.96.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.103.175.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.4.192.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.24.249.53.225.42.224.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.173.249.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.28.209.224.174.126.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.92.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.101.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.103.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.36.54.218.80.109.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.22.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.52.31.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.56.69.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.119.32.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.184.54.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.59.131.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.47.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.61.56.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.69.128.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.197.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.0.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.112.105.90.156.95.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.73.198.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.8.123.135.29.230.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.24.249.53.225.42.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.76.139.32.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.69.128.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.73.198.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.40.172.158.77.225.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.101.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.6.111.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.7.225.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.101.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.8.178.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.9.132.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.24.249.53.102.87.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.73.197.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.88.139.28.184.54.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.15.230.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.88.139.28.184.116.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.54.32.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.8.123.135.29.167.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.88.139.28.184.116.64.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.24.249.53.97.136.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.24.249.53.103.175.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.40.172.158.59.119.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.112.105.90.156.95.64.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.180.222.49.102.89.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.180.222.49.102.89.160.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.180.222.49.102.89.160.0.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.180.222.49.102.89.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.180.222.49.102.89.160.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.8.69.209.213.189.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.8.123.135.29.230.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.36.54.218.80.92.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.36.54.218.80.109.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.40.172.158.77.225.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.24.244.219.230.228.7.192.1.88.139.28.8.178.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.36.54.218.80.103.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.88.139.28.15.230.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.153.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.0.60.16.104.154.224.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.0.223.29.42.246.64.0.180.222.49.102.89.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.69.209.213.189.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.123.135.29.164.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.30.64.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.170.96.0.0.223.29.42.246.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.170.96.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.170.96.0.36.54.218.80.103.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.170.96.0.180.222.49.102.89.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.170.96.1.180.222.49.102.89.175|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.8.123.135.29.164.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.28.247.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.9.128.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.123.135.29.164.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.160.64.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.8.123.135.29.9.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.164.64.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.88.139.28.15.230.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.167.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.205.32.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.212.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.64.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.8.123.135.29.230.96.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.95.147.160.0.0.223.29.42.246.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.95.147.160.1.0.223.29.42.246.79|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.8.123.135.29.9.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.97.136.32.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.87.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.134.96.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.134.96.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.134.96.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.102.134.96.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.8.123.135.29.9.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.103.175.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.4.192.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.24.249.53.225.42.224.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.36.54.218.80.103.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.88.139.28.6.111.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.173.249.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.36.54.218.80.103.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.28.209.224.174.126.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.92.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.101.224.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.0.180.222.49.102.89.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.103.64.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.36.54.218.80.109.224.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.22.96.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.88.139.28.15.230.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.52.31.224.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.24.249.53.102.134.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.56.69.96.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.119.32.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.88.139.28.6.111.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.6.111.207|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.184.54.47|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.59.131.224.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.47.192.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.8.123.135.29.9.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.61.56.192.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.69.128.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.29.164.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.197.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.28.247.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.0.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.112.105.90.156.95.79|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.73.198.96.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.123.135.29.164.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.24.249.53.225.4.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.24.249.53.225.42.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.8.123.135.28.30.79|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.8.123.135.29.160.79|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.8.123.135.29.230.79|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.24.249.53.225.4.207|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.24.249.53.225.42.239|2|56 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.76.139.32.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.28.30.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.29.160.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.29.230.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.73.198.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.40.172.158.76.139.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.8.123.135.28.247.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.69.128.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.73.198.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.40.172.158.76.139.47|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.40.172.158.77.225.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.6.111.207|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.101.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.6.111.192.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.7.225.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.88.139.28.6.111.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.101.0.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.88.139.28.6.111.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.6.111.207|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.9.132.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.8.178.160.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.88.139.28.8.101.0|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.112.105.90.156.95.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.88.139.28.6.111.207|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.88.139.28.8.101.15|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.9.132.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.69.128.160|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.88.139.28.184.54.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.8.123.135.29.212.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.24.249.53.102.87.15|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.73.197.143|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.88.139.28.184.54.47|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.15.230.128.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.88.139.28.184.116.64|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.88.139.28.15.230.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.88.139.28.184.116.79|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.54.32.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.73.197.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.88.139.28.6.101.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.88.139.28.15.230.128|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.8.123.135.29.167.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.88.139.28.6.101.175|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.88.139.28.184.116.64.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.8.123.135.29.9.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.8.123.135.29.164.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.8.123.135.29.205.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.24.249.53.97.136.32|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.24.249.53.103.175.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.61.56.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.0.244.219.230.228.7.192|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.8.123.135.29.164.15|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.8.123.135.29.205.47|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.24.249.53.97.136.47|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.24.249.53.103.175.15|2|48 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.40.172.158.59.119.47|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.40.172.158.61.56.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.112.105.90.156.95.64.1.244.219.230.228.7.207|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.180.222.49.102.89.160.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.180.222.49.102.89.160.0.0.223.29.42.246.64|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.180.222.49.102.89.160.0.8.123.135.28.170.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.180.222.49.102.89.160.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.180.222.49.102.89.160.0.36.54.218.80.103.64|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.0.60.16.104.153.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.0.60.16.104.154.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.8.69.209.213.189.0|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.8.123.135.29.167.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.8.123.135.29.212.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.8.123.135.29.230.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.24.249.53.102.87.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.28.209.224.173.249.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.28.209.224.174.126.128|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.36.54.218.80.92.0|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.36.54.218.80.101.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.36.54.218.80.109.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.52.22.96|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.52.31.224|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.56.69.96|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.59.119.32|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.59.131.224|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.61.47.192|2|11 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.61.56.192|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.73.198.96|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.40.172.158.77.225.160|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.88.139.28.7.225.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.88.139.28.8.178.160|2|1 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.0.88.139.28.9.132.128|2|6 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.0.60.16.104.153.175|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.0.60.16.104.154.239|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.8.69.209.213.189.15|2|64 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.8.123.135.29.230.111|2|161 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.28.209.224.173.249.15|2|100 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.28.209.224.174.126.143|2|36 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.36.54.218.80.92.15|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.36.54.218.80.101.239|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.36.54.218.80.109.239|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.52.22.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.52.31.239|2|44 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.56.69.111|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.59.131.239|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.61.47.207|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.61.56.207|2|132 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.73.198.111|2|52 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.40.172.158.77.225.175|2|112 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.88.139.28.7.225.143|2|149 +1.3.6.1.4.1.14179.2.2.17.1.26.244.219.230.228.7.192.1.88.139.28.8.178.175|2|161 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.153.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.0.60.16.104.154.224.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.0.223.29.42.246.64.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.69.209.213.189.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.30.64.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.170.96.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.170.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.170.96.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.170.96.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.170.96.1.180.222.49.102.89.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.28.247.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.9.128.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.160.64.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.164.64.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.167.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.205.32.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.212.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.64.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.8.123.135.29.230.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.95.147.160.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.95.147.160.1.0.223.29.42.246.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.97.136.32.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.87.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.134.96.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.134.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.134.96.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.102.134.96.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.103.175.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.4.192.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.24.249.53.225.42.224.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.173.249.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.28.209.224.174.126.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.92.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.101.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.0.180.222.49.102.89.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.103.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.36.54.218.80.109.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.22.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.52.31.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.24.249.53.102.134.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.56.69.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.119.32.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.184.54.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.59.131.224.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.47.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.8.123.135.29.9.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.61.56.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.69.128.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.29.164.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.197.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.28.247.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.0.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.112.105.90.156.95.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.73.198.96.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.123.135.29.164.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.24.249.53.225.4.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.24.249.53.225.42.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.8.123.135.28.30.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.8.123.135.29.160.79|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.8.123.135.29.230.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.24.249.53.225.4.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.24.249.53.225.42.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.76.139.32.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.28.30.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.29.160.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.29.230.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.73.198.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.40.172.158.76.139.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.8.123.135.28.247.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.69.128.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.73.198.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.40.172.158.76.139.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.40.172.158.77.225.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.101.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.6.111.192.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.7.225.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.101.0.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.88.139.28.6.111.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.9.132.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.8.178.160.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.88.139.28.8.101.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.112.105.90.156.95.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.88.139.28.6.111.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.88.139.28.8.101.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.9.132.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.69.128.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.88.139.28.184.54.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.8.123.135.29.212.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.24.249.53.102.87.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.73.197.143|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.88.139.28.184.54.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.15.230.128.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.88.139.28.184.116.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.88.139.28.15.230.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.88.139.28.184.116.79|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.54.32.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.73.197.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.88.139.28.6.101.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.88.139.28.15.230.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.8.123.135.29.167.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.88.139.28.6.101.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.88.139.28.184.116.64.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.8.123.135.29.9.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.8.123.135.29.164.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.8.123.135.29.205.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.24.249.53.97.136.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.24.249.53.103.175.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.61.56.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.0.244.219.230.228.7.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.8.123.135.29.164.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.8.123.135.29.205.47|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.24.249.53.97.136.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.24.249.53.103.175.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.40.172.158.59.119.47|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.40.172.158.61.56.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.112.105.90.156.95.64.1.244.219.230.228.7.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.180.222.49.102.89.160.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.180.222.49.102.89.160.0.0.223.29.42.246.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.180.222.49.102.89.160.0.8.123.135.28.170.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.180.222.49.102.89.160.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.180.222.49.102.89.160.0.36.54.218.80.103.64|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.0.60.16.104.153.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.0.60.16.104.154.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.8.69.209.213.189.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.8.123.135.29.167.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.8.123.135.29.212.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.8.123.135.29.230.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.24.249.53.102.87.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.28.209.224.173.249.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.28.209.224.174.126.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.36.54.218.80.92.0|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.36.54.218.80.101.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.36.54.218.80.109.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.52.22.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.52.31.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.56.69.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.59.119.32|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.59.131.224|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.61.47.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.61.56.192|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.73.198.96|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.40.172.158.77.225.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.88.139.28.7.225.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.88.139.28.8.178.160|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.0.88.139.28.9.132.128|2|0 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.0.60.16.104.153.175|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.0.60.16.104.154.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.8.69.209.213.189.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.8.123.135.29.230.111|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.28.209.224.173.249.15|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.28.209.224.174.126.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.36.54.218.80.92.15|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.36.54.218.80.101.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.36.54.218.80.109.239|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.52.22.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.52.31.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.56.69.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.59.131.239|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.61.47.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.61.56.207|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.73.198.111|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.40.172.158.77.225.175|2|2 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.88.139.28.7.225.143|2|1 +1.3.6.1.4.1.14179.2.2.17.1.27.244.219.230.228.7.192.1.88.139.28.8.178.175|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.153.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.60.16.104.154.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.0.223.29.42.246.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.69.209.213.189.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.30.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.170.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.28.247.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.9.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.160.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.164.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.167.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.205.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.212.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.8.123.135.29.230.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.95.147.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.97.136.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.87.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.102.134.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.103.175.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.4.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.24.249.53.225.42.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.173.249.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.28.209.224.174.126.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.92.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.101.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.103.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.36.54.218.80.109.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.22.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.52.31.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.56.69.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.119.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.59.131.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.47.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.61.56.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.69.128.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.197.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.73.198.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.76.139.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.40.172.158.77.225.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.101.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.6.111.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.7.225.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.101.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.8.178.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.9.132.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.15.230.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.54.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.88.139.28.184.116.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.112.105.90.156.95.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.180.222.49.102.89.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.18.1.1.244.219.230.228.7.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.153.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.60.16.104.154.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.0.223.29.42.246.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.69.209.213.189.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.30.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.170.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.28.247.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.9.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.160.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.164.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.167.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.205.32.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.212.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.8.123.135.29.230.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.95.147.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.97.136.32.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.87.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.102.134.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.103.175.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.4.192.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.24.249.53.225.42.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.173.249.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.28.209.224.174.126.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.92.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.101.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.103.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.36.54.218.80.109.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.22.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.52.31.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.56.69.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.119.32.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.59.131.224.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.47.192.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.61.56.192.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.69.128.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.197.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.73.198.96.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.76.139.32.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.40.172.158.77.225.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.101.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.6.111.192.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.7.225.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.101.0.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.8.178.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.9.132.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.15.230.128.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.54.32.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.88.139.28.184.116.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.112.105.90.156.95.64.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.180.222.49.102.89.160.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.0.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.0|2|-100 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.1|2|-92 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.2|2|-84 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.3|2|-76 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.4|2|-68 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.5|2|-60 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.6|2|-52 +1.3.6.1.4.1.14179.2.2.18.1.2.244.219.230.228.7.192.1.7|2|-44 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.153.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.60.16.104.154.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.0.223.29.42.246.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.5|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.69.209.213.189.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.30.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.4|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.5|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.170.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.28.247.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.9.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.160.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.164.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.167.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.205.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.212.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.6|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.8.123.135.29.230.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.95.147.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.97.136.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.87.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.102.134.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.103.175.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.4.192.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.24.249.53.225.42.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.5|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.173.249.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.28.209.224.174.126.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.92.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.101.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.0|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.1|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.4|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.103.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.36.54.218.80.109.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.0|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.22.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.52.31.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.56.69.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.119.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.59.131.224.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.47.192.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.61.56.192.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.69.128.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.197.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.6|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.73.198.96.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.76.139.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.40.172.158.77.225.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.101.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.6.111.192.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.5|2|2 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.7.225.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.101.0.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.8.178.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.9.132.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.15.230.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.54.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.88.139.28.184.116.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.6|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.112.105.90.156.95.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.0|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.180.222.49.102.89.160.1.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.0.7|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.18.1.23.244.219.230.228.7.192.1.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.153.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.60.16.104.154.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.0.223.29.42.246.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.69.209.213.189.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.30.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.170.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.28.247.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.9.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.160.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.164.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.167.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.205.32.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.212.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.8.123.135.29.230.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.95.147.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.97.136.32.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.87.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.102.134.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.103.175.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.4.192.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.24.249.53.225.42.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.173.249.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.28.209.224.174.126.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.92.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.101.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.103.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.36.54.218.80.109.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.22.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.52.31.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.56.69.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.119.32.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.59.131.224.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.47.192.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.61.56.192.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.69.128.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.197.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.73.198.96.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.76.139.32.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.40.172.158.77.225.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.101.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.6.111.192.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.7.225.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.101.0.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.8.178.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.9.132.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.15.230.128.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.54.32.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.88.139.28.184.116.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.112.105.90.156.95.64.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.180.222.49.102.89.160.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.0.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.2|2|2 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.3|2|3 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.4|2|4 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.5|2|5 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.6|2|6 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.7|2|7 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.8|2|8 +1.3.6.1.4.1.14179.2.2.19.1.1.244.219.230.228.7.192.1.9|2|9 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.153.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.60.16.104.154.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.0.223.29.42.246.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.69.209.213.189.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.30.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.170.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.28.247.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.9.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.160.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.164.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.167.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.205.32.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.212.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.8.123.135.29.230.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.95.147.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.97.136.32.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.87.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.102.134.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.103.175.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.4.192.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.24.249.53.225.42.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.173.249.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.28.209.224.174.126.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.92.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.101.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.103.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.36.54.218.80.109.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.22.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.52.31.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.56.69.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.119.32.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.59.131.224.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.47.192.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.61.56.192.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.69.128.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.197.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.73.198.96.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.76.139.32.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.40.172.158.77.225.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.101.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.6.111.192.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.7.225.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.101.0.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.8.178.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.9.132.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.15.230.128.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.54.32.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.88.139.28.184.116.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.112.105.90.156.95.64.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.180.222.49.102.89.160.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.0.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.1|2|5 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.2|2|10 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.3|2|15 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.4|2|20 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.5|2|25 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.6|2|30 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.7|2|35 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.8|2|40 +1.3.6.1.4.1.14179.2.2.19.1.2.244.219.230.228.7.192.1.9|2|45 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.153.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.60.16.104.154.224.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.0.223.29.42.246.64.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.5|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.69.209.213.189.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.30.64.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.7|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.170.96.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.28.247.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.9.128.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.8|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.160.64.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.0.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.164.64.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.167.160.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.205.32.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.212.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.0.9|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.64.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.8.123.135.29.230.96.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.0.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.95.147.160.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.97.136.32.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.87.0.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.102.134.96.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.103.175.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.8|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.4.192.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.24.249.53.225.42.224.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.173.249.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.28.209.224.174.126.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.92.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.0.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.101.224.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.0|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.103.64.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.36.54.218.80.109.224.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.22.96.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.52.31.224.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.56.69.96.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.119.32.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.59.131.224.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.47.192.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.61.56.192.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.69.128.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.197.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.0.9|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.73.198.96.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.76.139.32.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.40.172.158.77.225.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.101.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.6.111.192.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.8|2|2 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.7.225.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.101.0.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.8.178.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.9.132.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.15.230.128.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.0.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.54.32.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.88.139.28.184.116.64.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.5|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.6|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.7|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.0.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.1|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.2|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.3|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.4|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.8|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.112.105.90.156.95.64.1.9|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.180.222.49.102.89.160.1.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.0|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.0.9|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.0|2|0 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.1|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.2|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.3|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.4|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.5|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.6|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.7|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.8|2|1 +1.3.6.1.4.1.14179.2.2.19.1.23.244.219.230.228.7.192.1.9|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.0.60.16.104.153.160.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.0.60.16.104.153.160.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.0.60.16.104.154.224.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.0.60.16.104.154.224.1|2|100 +1.3.6.1.4.1.14179.2.2.20.1.1.0.223.29.42.246.64.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.0.223.29.42.246.64.1|2|64 +1.3.6.1.4.1.14179.2.2.20.1.1.8.69.209.213.189.0.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.8.69.209.213.189.0.1|2|64 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.30.64.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.30.64.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.170.96.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.247.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.28.247.160.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.9.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.9.128.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.160.64.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.160.64.1|2|44 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.164.0.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.164.0.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.164.64.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.164.64.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.167.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.167.160.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.205.32.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.205.32.1|2|132 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.212.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.212.160.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.230.64.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.230.64.1|2|56 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.230.96.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.8.123.135.29.230.96.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.95.147.160.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.95.147.160.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.97.136.32.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.97.136.32.1|2|48 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.102.87.0.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.102.87.0.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.102.134.96.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.103.175.0.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.103.175.0.1|2|48 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.225.4.192.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.225.4.192.1|2|44 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.225.42.224.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.24.249.53.225.42.224.1|2|56 +1.3.6.1.4.1.14179.2.2.20.1.1.28.209.224.173.249.0.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.28.209.224.173.249.0.1|2|100 +1.3.6.1.4.1.14179.2.2.20.1.1.28.209.224.174.126.128.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.28.209.224.174.126.128.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.92.0.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.92.0.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.101.224.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.101.224.1|2|132 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.103.64.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.103.64.1|2|64 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.109.224.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.36.54.218.80.109.224.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.52.22.96.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.52.22.96.1|2|132 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.52.31.224.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.52.31.224.1|2|44 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.56.69.96.1|2|132 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.59.119.32.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.59.119.32.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.59.131.224.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.59.131.224.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.47.192.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.47.192.1|2|52 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.56.128.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.56.128.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.56.192.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.61.56.192.1|2|132 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.69.128.160.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.69.128.160.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.197.128.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.197.128.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.198.0.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.198.0.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.198.96.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.73.198.96.1|2|52 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.76.139.32.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.76.139.32.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.77.225.160.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.40.172.158.77.225.160.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.6.101.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.6.101.160.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.6.111.192.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.6.111.192.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.7.225.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.7.225.128.1|2|149 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.8.101.0.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.8.101.0.1|2|52 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.8.178.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.8.178.160.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.9.132.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.9.132.128.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.15.230.128.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.15.230.128.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.184.54.32.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.184.54.32.1|2|36 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.184.116.64.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.88.139.28.184.116.64.1|2|112 +1.3.6.1.4.1.14179.2.2.20.1.1.112.105.90.156.95.64.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.112.105.90.156.95.64.1|2|161 +1.3.6.1.4.1.14179.2.2.20.1.1.180.222.49.102.89.160.0|2|11 +1.3.6.1.4.1.14179.2.2.20.1.1.180.222.49.102.89.160.1|2|64 +1.3.6.1.4.1.14179.2.2.20.1.1.244.219.230.228.7.192.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.1.244.219.230.228.7.192.1|2|100 +1.3.6.1.4.1.14179.2.2.20.1.2.0.60.16.104.153.160.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.0.60.16.104.153.160.1|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.0.60.16.104.154.224.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.0.60.16.104.154.224.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.0.223.29.42.246.64.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.0.223.29.42.246.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.69.209.213.189.0.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.8.69.209.213.189.0.1|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.30.64.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.30.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.170.96.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.170.96.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.247.160.0|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.28.247.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.9.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.9.128.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.160.64.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.160.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.164.0.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.164.0.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.164.64.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.164.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.167.160.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.167.160.1|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.205.32.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.205.32.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.212.160.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.212.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.230.64.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.230.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.230.96.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.8.123.135.29.230.96.1|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.95.147.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.95.147.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.97.136.32.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.97.136.32.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.102.87.0.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.102.87.0.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.102.134.96.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.102.134.96.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.103.175.0.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.103.175.0.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.225.4.192.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.225.4.192.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.225.42.224.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.24.249.53.225.42.224.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.28.209.224.173.249.0.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.28.209.224.173.249.0.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.28.209.224.174.126.128.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.28.209.224.174.126.128.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.92.0.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.92.0.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.101.224.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.101.224.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.103.64.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.103.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.109.224.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.36.54.218.80.109.224.1|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.52.22.96.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.52.22.96.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.52.31.224.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.52.31.224.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.56.69.96.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.56.69.96.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.59.119.32.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.59.119.32.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.59.131.224.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.59.131.224.1|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.47.192.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.47.192.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.56.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.56.128.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.56.192.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.61.56.192.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.69.128.160.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.69.128.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.197.128.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.197.128.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.198.0.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.198.0.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.198.96.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.73.198.96.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.76.139.32.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.76.139.32.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.77.225.160.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.40.172.158.77.225.160.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.6.101.160.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.6.101.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.6.111.192.0|2|7 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.6.111.192.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.7.225.128.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.7.225.128.1|2|2 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.8.101.0.0|2|3 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.8.101.0.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.8.178.160.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.8.178.160.1|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.9.132.128.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.9.132.128.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.15.230.128.0|2|4 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.15.230.128.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.184.54.32.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.184.54.32.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.184.116.64.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.88.139.28.184.116.64.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.112.105.90.156.95.64.0|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.112.105.90.156.95.64.1|2|5 +1.3.6.1.4.1.14179.2.2.20.1.2.180.222.49.102.89.160.0|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.180.222.49.102.89.160.1|2|1 +1.3.6.1.4.1.14179.2.2.20.1.2.244.219.230.228.7.192.0|2|6 +1.3.6.1.4.1.14179.2.2.20.1.2.244.219.230.228.7.192.1|2|3 +1.3.6.1.4.1.14179.2.2.20.1.3.0.60.16.104.153.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.0.60.16.104.153.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.0.60.16.104.154.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.0.60.16.104.154.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.0.223.29.42.246.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.0.223.29.42.246.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.69.209.213.189.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.69.209.213.189.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.30.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.30.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.170.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.170.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.247.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.28.247.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.9.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.9.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.160.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.160.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.164.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.164.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.164.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.164.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.167.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.167.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.205.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.205.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.212.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.212.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.230.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.230.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.230.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.8.123.135.29.230.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.95.147.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.95.147.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.97.136.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.97.136.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.102.87.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.102.87.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.102.134.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.102.134.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.103.175.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.103.175.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.225.4.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.225.4.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.225.42.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.24.249.53.225.42.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.28.209.224.173.249.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.28.209.224.173.249.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.28.209.224.174.126.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.28.209.224.174.126.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.92.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.92.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.101.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.101.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.103.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.103.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.109.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.36.54.218.80.109.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.52.22.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.52.22.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.52.31.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.52.31.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.56.69.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.56.69.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.59.119.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.59.119.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.59.131.224.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.59.131.224.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.47.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.47.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.56.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.56.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.56.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.61.56.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.69.128.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.69.128.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.197.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.197.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.198.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.198.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.198.96.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.73.198.96.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.76.139.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.76.139.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.77.225.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.40.172.158.77.225.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.6.101.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.6.101.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.6.111.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.6.111.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.7.225.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.7.225.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.8.101.0.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.8.101.0.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.8.178.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.8.178.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.9.132.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.9.132.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.15.230.128.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.15.230.128.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.184.54.32.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.184.54.32.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.184.116.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.88.139.28.184.116.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.112.105.90.156.95.64.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.112.105.90.156.95.64.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.180.222.49.102.89.160.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.180.222.49.102.89.160.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.244.219.230.228.7.192.0|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.3.244.219.230.228.7.192.1|2|2347 +1.3.6.1.4.1.14179.2.2.20.1.24.0.60.16.104.153.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.0.60.16.104.153.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.0.60.16.104.154.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.0.60.16.104.154.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.0.223.29.42.246.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.0.223.29.42.246.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.69.209.213.189.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.69.209.213.189.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.30.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.30.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.170.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.170.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.247.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.28.247.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.9.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.9.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.160.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.160.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.164.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.164.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.164.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.164.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.167.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.167.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.205.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.205.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.212.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.212.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.230.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.230.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.230.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.8.123.135.29.230.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.95.147.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.95.147.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.97.136.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.97.136.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.102.87.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.102.87.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.102.134.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.102.134.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.103.175.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.103.175.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.225.4.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.225.4.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.225.42.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.24.249.53.225.42.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.28.209.224.173.249.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.28.209.224.173.249.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.28.209.224.174.126.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.28.209.224.174.126.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.92.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.92.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.101.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.101.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.103.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.103.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.109.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.36.54.218.80.109.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.52.22.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.52.22.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.52.31.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.52.31.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.56.69.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.56.69.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.59.119.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.59.119.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.59.131.224.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.59.131.224.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.47.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.47.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.56.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.56.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.56.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.61.56.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.69.128.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.69.128.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.197.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.197.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.198.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.198.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.198.96.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.73.198.96.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.76.139.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.76.139.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.77.225.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.40.172.158.77.225.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.6.101.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.6.101.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.6.111.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.6.111.192.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.7.225.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.7.225.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.8.101.0.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.8.101.0.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.8.178.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.8.178.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.9.132.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.9.132.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.15.230.128.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.15.230.128.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.184.54.32.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.184.54.32.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.184.116.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.88.139.28.184.116.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.112.105.90.156.95.64.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.112.105.90.156.95.64.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.180.222.49.102.89.160.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.180.222.49.102.89.160.1|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.244.219.230.228.7.192.0|2|2346 +1.3.6.1.4.1.14179.2.2.20.1.24.244.219.230.228.7.192.1|2|2346 +1.3.6.1.4.1.14179.2.3.1.1.0|2|1 +1.3.6.1.4.1.14179.2.3.1.3.0|2|1 +1.3.6.1.4.1.14179.2.3.1.4.0|2|1 +1.3.6.1.4.1.14179.2.3.1.5.0|2|0 +1.3.6.1.4.1.14179.2.3.1.6.0|2|1 +1.3.6.1.4.1.14179.2.3.1.7.0|2|1200 +1.3.6.1.4.1.14179.2.3.1.17.0|4|default +1.3.6.1.4.1.14179.2.3.1.18.0|2|0 +1.3.6.1.4.1.14179.2.3.1.19.0|2|2 +1.3.6.1.4.1.14179.2.3.1.20.0|2|0 +1.3.6.1.4.1.14179.2.3.1.21.0|2|0 +1.3.6.1.4.1.14179.2.3.1.22.0|2|0 +1.3.6.1.4.1.14179.2.3.1.23.0|2|0 +1.3.6.1.4.1.14179.2.3.1.24.0|2|0 +1.3.6.1.4.1.14179.2.3.1.25.0|2|0 +1.3.6.1.4.1.14179.2.3.1.26.0|2|0 +1.3.6.1.4.1.14179.2.3.1.31.0|2|1 +1.3.6.1.4.1.14179.2.3.1.41.1.0|2|1 +1.3.6.1.4.1.14179.2.3.1.41.3.0|2|1 +1.3.6.1.4.1.14179.2.3.1.41.5.0|2|1 +1.3.6.1.4.1.14179.2.3.1.41.6.0|2|1 +1.3.6.1.4.1.14179.2.3.1.41.7.0|2|1 +1.3.6.1.4.1.14179.2.3.1.43.1.0|2|1 +1.3.6.1.4.1.14179.2.3.1.43.2.0|2|1200 +1.3.6.1.4.1.14179.2.3.1.44.1.0|2|0 +1.3.6.1.4.1.14179.2.3.1.44.2.0|2|1 +1.3.6.1.4.1.14179.2.3.1.45.0|4|default +1.3.6.1.4.1.14179.2.3.1.46.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.1.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.2.0|2|100 +1.3.6.1.4.1.14179.2.3.2.1.3.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.4.0|2|36 +1.3.6.1.4.1.14179.2.3.2.1.5.0|66|600 +1.3.6.1.4.1.14179.2.3.2.1.6.0|66|7 +1.3.6.1.4.1.14179.2.3.2.1.7.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.8.0|66|0 +1.3.6.1.4.1.14179.2.3.2.1.9.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.10.0|66|600 +1.3.6.1.4.1.14179.2.3.2.1.11.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.12.0|66|7 +1.3.6.1.4.1.14179.2.3.2.1.13.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.14.0|66|0 +1.3.6.1.4.1.14179.2.3.2.1.15.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.16.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.17.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.18.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.19.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.20.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.21.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.22.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.23.0|2|2 +1.3.6.1.4.1.14179.2.3.2.1.24.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.25.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.26.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.27.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.28.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.30.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.31.0|2|0 +1.3.6.1.4.1.14179.2.3.2.1.32.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.33.0|2|75 +1.3.6.1.4.1.14179.2.3.2.1.34.0|2|1 +1.3.6.1.4.1.14179.2.3.2.1.35.0|2|0 +1.3.6.1.4.1.14179.2.3.2.2.1.0|2|100 +1.3.6.1.4.1.14179.2.3.2.2.2.0|2|4 +1.3.6.1.4.1.14179.2.3.2.2.3.0|2|60 +1.3.6.1.4.1.14179.2.3.2.2.5.0|2|0 +1.3.6.1.4.1.14179.2.3.2.2.6.0|2|0 +1.3.6.1.4.1.14179.2.3.2.2.7.0|2|1 +1.3.6.1.4.1.14179.2.3.2.2.8.0|2|1 +1.3.6.1.4.1.14179.2.3.2.2.9.0|2|1 +1.3.6.1.4.1.14179.2.3.2.2.10.0|2|13 +1.3.6.1.4.1.14179.2.3.2.2.11.0|2|2347 +1.3.6.1.4.1.14179.2.3.2.2.12.0|2|7 +1.3.6.1.4.1.14179.2.3.2.2.13.0|2|4 +1.3.6.1.4.1.14179.2.3.2.2.14.0|2|2346 +1.3.6.1.4.1.14179.2.3.2.2.15.0|66|512 +1.3.6.1.4.1.14179.2.3.2.2.16.0|66|512 +1.3.6.1.4.1.14179.2.3.2.2.17.0|2|-50 +1.3.6.1.4.1.14179.2.3.2.2.18.0|2|0 +1.3.6.1.4.1.14179.2.3.2.2.19.0|2|1 +1.3.6.1.4.1.14179.2.3.2.2.20.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.1.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.2.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.3.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.4.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.5.0|2|100 +1.3.6.1.4.1.14179.2.3.3.1.6.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.7.0|2|36 +1.3.6.1.4.1.14179.2.3.3.1.8.0|66|600 +1.3.6.1.4.1.14179.2.3.3.1.9.0|66|7 +1.3.6.1.4.1.14179.2.3.3.1.10.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.11.0|66|0 +1.3.6.1.4.1.14179.2.3.3.1.12.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.13.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.14.0|66|600 +1.3.6.1.4.1.14179.2.3.3.1.15.0|66|7 +1.3.6.1.4.1.14179.2.3.3.1.16.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.17.0|66|0 +1.3.6.1.4.1.14179.2.3.3.1.19.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.20.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.21.0|2|2 +1.3.6.1.4.1.14179.2.3.3.1.22.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.23.0|2|2 +1.3.6.1.4.1.14179.2.3.3.1.24.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.25.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.26.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.28.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.29.0|2|0 +1.3.6.1.4.1.14179.2.3.3.1.30.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.31.0|2|75 +1.3.6.1.4.1.14179.2.3.3.1.32.0|2|1 +1.3.6.1.4.1.14179.2.3.3.1.33.0|2|0 +1.3.6.1.4.1.14179.2.3.3.2.1.0|2|100 +1.3.6.1.4.1.14179.2.3.3.2.2.0|2|4 +1.3.6.1.4.1.14179.2.3.3.2.3.0|2|60 +1.3.6.1.4.1.14179.2.3.3.2.5.0|2|0 +1.3.6.1.4.1.14179.2.3.3.2.6.0|2|0 +1.3.6.1.4.1.14179.2.3.3.2.7.0|2|1 +1.3.6.1.4.1.14179.2.3.3.2.8.0|2|1 +1.3.6.1.4.1.14179.2.3.3.2.9.0|2|36 +1.3.6.1.4.1.14179.2.3.3.2.10.0|2|24 +1.3.6.1.4.1.14179.2.3.3.2.11.0|2|2347 +1.3.6.1.4.1.14179.2.3.3.2.12.0|2|7 +1.3.6.1.4.1.14179.2.3.3.2.13.0|2|4 +1.3.6.1.4.1.14179.2.3.3.2.14.0|2|2346 +1.3.6.1.4.1.14179.2.3.3.2.15.0|66|512 +1.3.6.1.4.1.14179.2.3.3.2.16.0|66|512 +1.3.6.1.4.1.14179.2.3.3.2.17.0|2|-50 +1.3.6.1.4.1.14179.2.3.3.2.18.0|2|0 +1.3.6.1.4.1.14179.2.3.4.1.1.0|2|0 +1.3.6.1.4.1.14179.2.3.4.1.2.0|2|1 +1.3.6.1.4.1.14179.2.3.4.1.3.0|2|0 +1.3.6.1.4.1.14179.2.4.1.6.1.0|2|10 +1.3.6.1.4.1.14179.2.4.1.6.2.0|2|-70 +1.3.6.1.4.1.14179.2.4.1.6.3.0|2|80 +1.3.6.1.4.1.14179.2.4.1.6.4.0|66|1000000 +1.3.6.1.4.1.14179.2.4.1.6.5.0|2|12 +1.3.6.1.4.1.14179.2.4.1.6.6.0|2|12 +1.3.6.1.4.1.14179.2.4.1.6.7.0|2|3 +1.3.6.1.4.1.14179.2.4.1.6.8.0|2|25 +1.3.6.1.4.1.14179.2.4.1.6.9.0|66|180 +1.3.6.1.4.1.14179.2.4.1.6.10.0|66|180 +1.3.6.1.4.1.14179.2.4.1.6.11.0|66|60 +1.3.6.1.4.1.14179.2.4.1.6.12.0|66|180 +1.3.6.1.4.1.14179.2.4.1.6.13.0|2|2 +1.3.6.1.4.1.14179.2.4.1.6.14.0|66|20 +1.3.6.1.4.1.14179.2.4.2.6.1.0|2|10 +1.3.6.1.4.1.14179.2.4.2.6.2.0|2|-70 +1.3.6.1.4.1.14179.2.4.2.6.3.0|2|80 +1.3.6.1.4.1.14179.2.4.2.6.4.0|66|1000000 +1.3.6.1.4.1.14179.2.4.2.6.5.0|2|12 +1.3.6.1.4.1.14179.2.4.2.6.6.0|2|12 +1.3.6.1.4.1.14179.2.4.2.6.7.0|2|3 +1.3.6.1.4.1.14179.2.4.2.6.8.0|2|25 +1.3.6.1.4.1.14179.2.4.2.6.9.0|66|180 +1.3.6.1.4.1.14179.2.4.2.6.10.0|66|180 +1.3.6.1.4.1.14179.2.4.2.6.11.0|66|60 +1.3.6.1.4.1.14179.2.4.2.6.12.0|66|180 +1.3.6.1.4.1.14179.2.4.2.6.13.0|2|2 +1.3.6.1.4.1.14179.2.4.2.6.14.0|66|20 +1.3.6.1.4.1.14179.2.8.2.18.0|65|168304 +1.3.6.1.4.1.14179.2.8.2.19.0|65|0 +1.3.6.1.4.1.14179.2.8.2.20.0|65|0 +1.3.6.1.4.1.14179.2.8.2.21.0|65|0 +1.3.6.1.4.1.14179.2.8.2.22.0|65|0 +1.3.6.1.4.1.14179.2.8.2.23.0|65|0 +1.3.6.1.4.1.14179.2.8.2.30.0|65|0 +1.3.6.1.4.1.14179.2.8.2.31.0|65|0 +1.3.6.1.4.1.14179.2.8.2.32.0|65|0 +1.3.6.1.4.1.14179.2.8.2.33.0|65|0 +1.3.6.1.4.1.14179.2.8.2.35.0|65|0 +1.3.6.1.6.3.1.1.6.1.0|2|0 +1.3.6.1.6.3.10.2.1.1.0|4x|8000000903008c1e806f236c +1.3.6.1.6.3.10.2.1.2.0|2|27 +1.3.6.1.6.3.10.2.1.3.0|2|4544156 +1.3.6.1.6.3.10.2.1.4.0|2|1500 +1.3.6.1.6.3.11.2.1.1.0|65|0 +1.3.6.1.6.3.11.2.1.2.0|65|0 +1.3.6.1.6.3.11.2.1.3.0|65|0 +1.3.6.1.6.3.12.1.1.0|2|268140 +1.3.6.1.6.3.12.1.4.0|65|0 +1.3.6.1.6.3.12.1.5.0|65|0 +1.3.6.1.6.3.13.1.1.1.2.105.110.102.111.114.109|4|inform +1.3.6.1.6.3.13.1.1.1.3.105.110.102.111.114.109|2|2 +1.3.6.1.6.3.13.1.1.1.4.105.110.102.111.114.109|2|3 +1.3.6.1.6.3.13.1.1.1.5.105.110.102.111.114.109|2|1 +1.3.6.1.6.3.13.1.1.1.5.105.110.102.111.114.109|4|